We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cc27ba2 + 9bd94ce commit 8c241d6Copy full SHA for 8c241d6
apps/web-mzima-client/src/app/shared/components/search-form/search-form.component.ts
@@ -697,6 +697,12 @@ export class SearchFormComponent extends BaseComponent implements OnInit {
697
) {
698
this.activeSavedSearch.filter.source = [this.activeSavedSearch.filter.source];
699
}
700
+ if (this.activeSavedSearch.filter.date_before || this.activeSavedSearch.filter.date_before) {
701
+ this.activeSavedSearch.filter.date = {
702
+ start: this.activeSavedSearch.filter.date_after,
703
+ end: this.activeSavedSearch.filter.date_before,
704
+ };
705
+ }
706
707
this.activeSavedSearch.filter.currentView = this.activeSavedSearch.view;
708
0 commit comments