From bc019fab96255c8502cef300f6b57717ebb6d8f8 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 7 Jul 2025 07:21:27 -0700 Subject: [PATCH] Fix: default to empty permissions for group creation (#10337) --- .../group-edit-dialog/group-edit-dialog.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-ui/src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.ts b/src-ui/src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.ts index bdb8f6d62..4aeefb2a8 100644 --- a/src-ui/src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.ts +++ b/src-ui/src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.ts @@ -43,7 +43,7 @@ export class GroupEditDialogComponent extends EditDialogComponent { getForm(): FormGroup { return new FormGroup({ name: new FormControl(''), - permissions: new FormControl(null), + permissions: new FormControl([]), }) } }