mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-07 15:25:41 +01:00
Fix: default to empty permissions for group creation (#10337)
This commit is contained in:
parent
1cd21d0f38
commit
bc019fab96
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ export class GroupEditDialogComponent extends EditDialogComponent<Group> {
|
||||||
getForm(): FormGroup {
|
getForm(): FormGroup {
|
||||||
return new FormGroup({
|
return new FormGroup({
|
||||||
name: new FormControl(''),
|
name: new FormControl(''),
|
||||||
permissions: new FormControl(null),
|
permissions: new FormControl([]),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue