fix: Use correct type for ListDataStoreContentFilter filter (no-changelog) (#18752)

This commit is contained in:
Charlie Kolb
2025-08-25 16:46:22 +02:00
committed by GitHub
parent 110b2de434
commit b6562725ea
2 changed files with 2 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ export type ListDataStoreContentFilter = {
filters: Array<{
columnName: string;
condition: 'eq' | 'neq';
value: string | number | boolean | Date;
value: DataStoreColumnJsType;
}>;
};