document granular permission

This commit is contained in:
Jesper Møller Jensen
2023-12-07 22:06:55 +13:00
committed by Jacob Overgaard
parent 6f55c099ab
commit 5b3e56afa4

View File

@@ -27,7 +27,7 @@ export class UmbInputDocumentGranularPermissionElement extends FormControlMixin(
@property()
public set value(idsString: string) {
if (idsString !== this._value) {
this.selectedIds = idsString.split(/[ ,]+/);
this.selectedIds = idsString !== '' ? idsString.split(/[ ,]+/) : [];
}
}