Fix salvataggio e visualizzazione note checklist

This commit is contained in:
FabioL 2024-07-12 09:04:54 +02:00
parent 8d3f3790ab
commit 1af56dc811
1 changed files with 8 additions and 1 deletions

View File

@ -60,7 +60,14 @@ if (!function_exists('renderChecklist')) {
$result .= '
<td style="width:500px;border-top:0px;">
{[ "type": "textarea", "class": "unblockable", "name": "note_checklist", "placeholder": "'.tr('Note').'...", "id": "note_'.$check->id.'", "value": "'.$check->note.'" ]}
'.input([
'type' => 'textarea',
'name' => '',
'id' => 'note_'.$check->id,
'class' => 'unblockable',
'placeholder' => tr('Note').'...',
'value' => $check->note,
]).'
</td>';
$result .= '