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 e787ce11e..1bf5d0216 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 @@ -30,9 +30,15 @@ export class DateDropdownComponent implements OnInit, OnDestroy { @Input() dateBefore: string + @Output() + dateBeforeChange = new EventEmitter() + @Input() dateAfter: string + @Output() + dateAfterChange = new EventEmitter() + @Input() title: string @@ -83,6 +89,8 @@ export class DateDropdownComponent implements OnInit, OnDestroy { } onChange() { + this.dateAfterChange.emit(this.dateAfter) + this.dateBeforeChange.emit(this.dateBefore) this.datesSet.emit({after: this.dateAfter, before: this.dateBefore}) } @@ -91,12 +99,12 @@ export class DateDropdownComponent implements OnInit, OnDestroy { } clearBefore() { - this.dateBefore = null; + this.dateBefore = null this.onChange() } clearAfter() { - this.dateAfter = null; + this.dateAfter = null this.onChange() } 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 5f9440336..1261ff921 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 @@ -1,14 +1,14 @@
- @@ -19,9 +19,9 @@
-
- - +
+ +