From 85737029ffe599571614d562636b40fd9db6e74b Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 17 Mar 2025 15:49:18 -0700 Subject: [PATCH] Hide it for tags any [ci skip] --- .../filterable-dropdown.component.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts index 1b31fe568..98d52bf52 100644 --- a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts +++ b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts @@ -70,10 +70,17 @@ export class FilterableDropdownSelectionModel { } private setNullItem() { + if (this.manyToOne && this.logicalOperator === LogicalOperator.Or) { + if (this._items[0]?.id === null) { + this._items.shift() + } + return + } + const item = { name: $localize`:Filter drop down element to filter for documents with no correspondent/type/tag assigned:Not assigned`, id: - this.intersection === Intersection.Include + this.manyToOne || this.intersection === Intersection.Include ? null : NEGATIVE_NULL_FILTER_VALUE, } @@ -265,6 +272,7 @@ export class FilterableDropdownSelectionModel { set logicalOperator(operator: LogicalOperator) { this.temporaryLogicalOperator = operator + this.setNullItem() } toggleOperator() {