Skip to content

Commit 1b04338

Browse files
committed
refactor: replace ApiFilter type with any for default_filter in QuerySearchTableOptions
Signed-off-by: Wanjin Noh <[email protected]>
1 parent 1bd60ba commit 1b04338

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/mirinae/src/data-display/dynamic/dynamic-layout/type/layout-schema.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// eslint-disable-next-line import/no-cycle
2-
import type { ApiFilter } from '@cloudforet/core-lib/space-connector/type';
31

42
import type { KeyDataType } from '@/controls/search/query-search/type';
53
import type { DynamicField } from '@/data-display/dynamic/dynamic-field/type/field-schema';
@@ -78,7 +76,7 @@ export interface QuerySearchTableOptions extends CommonOptions {
7876
search: SearchSchema;
7977
disable_search?: boolean;
8078
default_sort?: Sort;
81-
default_filter: ApiFilter[];
79+
default_filter: any[];
8280
}
8381

8482
export type RawOptions = CommonOptions;

0 commit comments

Comments
 (0)