From fc683e150a30a243be8042dbb6d24ad219634bf7 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 2 Oct 2024 20:21:47 -0700 Subject: [PATCH] Add missing interface to resolve test warning --- .../custom-fields-query-dropdown.component.ts | 3 ++- 1 file changed, 2 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 923907158..011ae1bc1 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 @@ -2,6 +2,7 @@ import { Component, EventEmitter, Input, + OnDestroy, Output, ViewChild, } from '@angular/core' @@ -148,7 +149,7 @@ export class CustomFieldQueriesModel { templateUrl: './custom-fields-query-dropdown.component.html', styleUrls: ['./custom-fields-query-dropdown.component.scss'], }) -export class CustomFieldsQueryDropdownComponent { +export class CustomFieldsQueryDropdownComponent implements OnDestroy { public CustomFieldQueryComponentType = CustomFieldQueryElementType public CustomFieldQueryOperator = CustomFieldQueryOperator public CustomFieldDataType = CustomFieldDataType