We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df352bb commit 0ecc89cCopy full SHA for 0ecc89c
1 file changed
index.ts
@@ -2,7 +2,6 @@ import { AdminForthPlugin } from "adminforth";
2
import type { IAdminForth, AdminForthResource, AdminForthComponentDeclaration } from "adminforth";
3
import { AdminForthFilterOperators } from "adminforth";
4
import type { PluginOptions } from './types.js';
5
-import type { FilterParams } from "@/types/Common";
6
7
export default class extends AdminForthPlugin {
8
options: PluginOptions;
@@ -50,7 +49,7 @@ export default class extends AdminForthPlugin {
50
49
}
51
);
52
53
- const normalizeFilterValue = (filters: FilterParams[]) => {
+ const normalizeFilterValue = (filters: any[]) => {
54
const filtersToReturn = [];
55
for (const filter of filters) {
56
if (filter.field.startsWith('_universal_search_')) {
0 commit comments