From 8920a32c7531df5be8460abc8aa89222c21c0665 Mon Sep 17 00:00:00 2001
From: Michael Shamoon <4887959+shamoon@users.noreply.github.com>
Date: Fri, 11 Mar 2022 01:17:19 -0800
Subject: [PATCH] Include excluded items in dropdown count
---
.../filterable-dropdown/filterable-dropdown.component.html | 2 +-
.../filterable-dropdown/filterable-dropdown.component.ts | 4 ++++
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.html b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
index babf25588..b79862bf1 100644
--- a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
+++ b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -6,7 +6,7 @@
{{title}}
0">
- {{selectionModel.selectionSize()}}selected
+ {{selectionModel.totalCount}}selected
selected
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 c3b4c890b..27b04d08b 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
@@ -137,6 +137,10 @@ export class FilterableDropdownSelectionModel {
return this.getSelectedItems().length
}
+ get totalCount() {
+ return this.getSelectedItems().length + this.getExcludedItems().length
+ }
+
clear(fireEvent = true) {
this.temporarySelectionStates.clear()
this.temporaryLogicalOperator = this._logicalOperator = 'and'