- saving progress;

This commit is contained in:
Vitalii Kiiko
2024-12-11 08:59:55 +01:00
parent f92b960aa7
commit a5133fe026
3 changed files with 6 additions and 6 deletions

View File

@@ -250,13 +250,13 @@ const SoccorsoAddPreInstructor = () => {
<div className="appPageSection__withBorder grey">
<div className="appPageSection__checklist">
{formData.formFields.map((o, i) => <div key={o.fieldId}>
{/*<Checkbox
<Checkbox
inputId={`checklist_${o.fieldId}`}
onChange={(e) => updateEvaluationValue(
e.checked,
`formFields.${i}.selected`
)}
checked={o.selected}></Checkbox>*/}
checked={o.selected}></Checkbox>
<label htmlFor={`checklist_${o.fieldId}`}>{o.label}</label>
</div>)}
</div>