Fix: default to empty permissions for group creation (#10337)

This commit is contained in:
shamoon
2025-07-07 07:21:27 -07:00
committed by GitHub
parent 1cd21d0f38
commit bc019fab96

View File

@@ -43,7 +43,7 @@ export class GroupEditDialogComponent extends EditDialogComponent<Group> {
getForm(): FormGroup {
return new FormGroup({
name: new FormControl(''),
permissions: new FormControl(null),
permissions: new FormControl([]),
})
}
}