Hide it for tags any

[ci skip]
This commit is contained in:
shamoon 2025-03-17 15:49:18 -07:00
parent eadcc6ba2e
commit 85737029ff
No known key found for this signature in database

View File

@ -70,10 +70,17 @@ export class FilterableDropdownSelectionModel {
} }
private setNullItem() { private setNullItem() {
if (this.manyToOne && this.logicalOperator === LogicalOperator.Or) {
if (this._items[0]?.id === null) {
this._items.shift()
}
return
}
const item = { const item = {
name: $localize`:Filter drop down element to filter for documents with no correspondent/type/tag assigned:Not assigned`, name: $localize`:Filter drop down element to filter for documents with no correspondent/type/tag assigned:Not assigned`,
id: id:
this.intersection === Intersection.Include this.manyToOne || this.intersection === Intersection.Include
? null ? null
: NEGATIVE_NULL_FILTER_VALUE, : NEGATIVE_NULL_FILTER_VALUE,
} }
@ -265,6 +272,7 @@ export class FilterableDropdownSelectionModel {
set logicalOperator(operator: LogicalOperator) { set logicalOperator(operator: LogicalOperator) {
this.temporaryLogicalOperator = operator this.temporaryLogicalOperator = operator
this.setNullItem()
} }
toggleOperator() { toggleOperator() {