diff --git a/src-ui/src/app/components/common/date-dropdown/date-dropdown.component.ts b/src-ui/src/app/components/common/date-dropdown/date-dropdown.component.ts
index 9eb4c477a..e901acfeb 100644
--- a/src-ui/src/app/components/common/date-dropdown/date-dropdown.component.ts
+++ b/src-ui/src/app/components/common/date-dropdown/date-dropdown.component.ts
@@ -106,6 +106,13 @@ export class DateDropdownComponent implements OnInit, OnDestroy {
}
}
+ reset() {
+ this.dateBefore = null
+ this.dateAfter = null
+ this.relativeDate = null
+ this.onChange()
+ }
+
setRelativeDate(rd: RelativeDate) {
this.dateBefore = null
this.dateAfter = null
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 eef92c4eb..9ce3c8da2 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
@@ -5,14 +5,7 @@
{{title}}
0">
-
- {{selectionModel.totalCount}}selected
-
-
- selected
-
+ 0" (cleared)="reset()">
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 9a16b4426..373f0aa5d 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
@@ -384,4 +384,9 @@ export class FilterableDropdownComponent {
this.selectionModel.exclude(itemID)
}
}
+
+ reset() {
+ this.selectionModel.reset()
+ this.selectionModelChange.emit(this.selectionModel)
+ }
}