diff --git a/izanami-frontend/src/components/FeatureTable.tsx b/izanami-frontend/src/components/FeatureTable.tsx index e88d67b90..4e0fd7607 100644 --- a/izanami-frontend/src/components/FeatureTable.tsx +++ b/izanami-frontend/src/components/FeatureTable.tsx @@ -1557,7 +1557,7 @@ export function FeatureTable(props: { if (!filterValue || filterValue?.length === 0) { return true; } - const value = row.getValue(columnId); + const value: any = row.getValue(columnId); return filterValue.some((v: string) => value.includes(v)); }, diff --git a/izanami-frontend/src/pages/keys.tsx b/izanami-frontend/src/pages/keys.tsx index 2ca56baef..ed83bd33b 100644 --- a/izanami-frontend/src/pages/keys.tsx +++ b/izanami-frontend/src/pages/keys.tsx @@ -203,7 +203,7 @@ export default function Keys(props: { tenant: string }) { if (!filterValue || filterValue?.length === 0) { return true; } - const value = row.getValue(columnId); + const value: any = row.getValue(columnId); return filterValue.some((v: string) => value.includes(v)); }, diff --git a/izanami-frontend/src/pages/tags.tsx b/izanami-frontend/src/pages/tags.tsx index b48fcbef4..e3b8f6e4d 100644 --- a/izanami-frontend/src/pages/tags.tsx +++ b/izanami-frontend/src/pages/tags.tsx @@ -235,7 +235,7 @@ export function Tags(props: { tenant: string }) { const name = info.getValue(); return ( <> -