Skip to content
Snippets Groups Projects
Commit 68de5d15 authored by OZGCloud's avatar OZGCloud
Browse files

OZG-4310 CR

parent a46804dd
No related branches found
No related tags found
No related merge requests found
...@@ -71,7 +71,7 @@ export class UserAddFormService extends AbstractFormService { ...@@ -71,7 +71,7 @@ export class UserAddFormService extends AbstractFormService {
disableUncheckedCheckboxes(alfaGroup: UntypedFormGroup): void { disableUncheckedCheckboxes(alfaGroup: UntypedFormGroup): void {
for (const control of Object.values<AbstractControl>(alfaGroup.controls)) { for (const control of Object.values<AbstractControl>(alfaGroup.controls)) {
if (!control.value) control.disable({ emitEvent: false }); if (control.value === false) control.disable({ emitEvent: false });
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment