Fix bug with departments info in staff editor component (#931)

This commit is contained in:
LautaroCesso 2020-11-13 14:41:59 -03:00 committed by GitHub
parent 15f765cf85
commit bb1f5d0ade
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -219,11 +219,13 @@ class StaffEditor extends React.Component {
);
}
renderDepartmentsInfo() {
const { departments } = this.state;
const departmentsAssigned = this.getDepartments().filter((_department, index) => departments.includes(index))
return (
<Form values={{departments: this.state.departments}}>
<FormField name="departments" field="checkbox-group" fieldProps={{items: this.getDepartments().filter((department,index) => this.state.departments.includes(index))}} />
<Form values={{departments: Array.from({length: departmentsAssigned.length}, (value, index) => index)}}>
<FormField name="departments" field="checkbox-group" fieldProps={{items: departmentsAssigned}} />
</Form>
);
}