From 8f08201633ea845973d24a0eda598eb960004fa3 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+nikonratm@users.noreply.github.com> Date: Wed, 20 Jan 2021 18:38:49 -0800 Subject: [PATCH] Fix resetting any vs all --- .../common/filterable-dropdown/filterable-dropdown.component.ts | 1 + 1 file changed, 1 insertion(+) 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 a0a3ba459..a63183575 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 @@ -114,6 +114,7 @@ export class FilterableDropdownSelectionModel { clear(fireEvent = true) { this.temporarySelectionStates.clear() + this.temporaryLogicalOperator = this._logicalOperator = 'and' if (fireEvent) { this.changed.next(this) }