Fix dropdown Private items with empty set

This commit is contained in:
shamoon 2023-04-25 22:06:16 -07:00
parent b34dfcd72f
commit 45ecec5623

View File

@ -43,8 +43,8 @@ export class SelectComponent extends AbstractInputComponent<number> {
} }
checkForPrivateItems(value: any) { checkForPrivateItems(value: any) {
if (Array.isArray(value) && value.length > 0) { if (Array.isArray(value)) {
value.forEach((id) => this.checkForPrivateItem(id)) if (value.length > 0) value.forEach((id) => this.checkForPrivateItem(id))
} else { } else {
this.checkForPrivateItem(value) this.checkForPrivateItem(value)
} }