Merge pull request #3189 from paperless-ngx/fix/issue-3178

This commit is contained in:
shamoon 2023-04-26 08:20:19 -07:00 committed by GitHub
commit a119790697
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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