feat(Data Table Node): Show 'Is False' / 'Is True' condition on boolean columns (no-changelog) (#19478)

This commit is contained in:
Jaakko Husso
2025-09-12 17:54:54 +03:00
committed by GitHub
parent 47f1d14b66
commit 1a5fd5a238
5 changed files with 182 additions and 74 deletions

View File

@@ -101,6 +101,18 @@ export function buildGetManyFilter(
condition: 'neq' as const,
value: null,
};
case 'isTrue':
return {
columnName: x.keyName,
condition: 'eq' as const,
value: true,
};
case 'isFalse':
return {
columnName: x.keyName,
condition: 'eq' as const,
value: false,
};
default:
return {
columnName: x.keyName,