From 1cfba871149744c15c2408e1df581f8f8b991181 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 15 Jan 2025 06:46:36 -0800 Subject: [PATCH] Fix: import date picker module in cf query dropdown (#8749) --- .../custom-fields-query-dropdown.component.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src-ui/src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.ts b/src-ui/src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.ts index d6ae95604..0fa7fe536 100644 --- a/src-ui/src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.ts +++ b/src-ui/src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.ts @@ -9,7 +9,11 @@ import { ViewChildren, } from '@angular/core' import { FormsModule, ReactiveFormsModule } from '@angular/forms' -import { NgbDropdown, NgbDropdownModule } from '@ng-bootstrap/ng-bootstrap' +import { + NgbDatepickerModule, + NgbDropdown, + NgbDropdownModule, +} from '@ng-bootstrap/ng-bootstrap' import { NgSelectComponent, NgSelectModule } from '@ng-select/ng-select' import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons' import { first, Subject, takeUntil } from 'rxjs' @@ -164,6 +168,7 @@ export class CustomFieldQueriesModel { ClearableBadgeComponent, FormsModule, ReactiveFormsModule, + NgbDatepickerModule, NgTemplateOutlet, NgSelectModule, NgxBootstrapIconsModule,