Fix salvataggio e visualizzazione note checklist
This commit is contained in:
parent
8d3f3790ab
commit
1af56dc811
|
@ -60,7 +60,14 @@ if (!function_exists('renderChecklist')) {
|
||||||
|
|
||||||
$result .= '
|
$result .= '
|
||||||
<td style="width:500px;border-top:0px;">
|
<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>';
|
</td>';
|
||||||
|
|
||||||
$result .= '
|
$result .= '
|
||||||
|
|
Loading…
Reference in New Issue