Allow for filtering by false booleans (#5469)

This commit is contained in:
Tyler Forest-Hauser
2021-05-04 17:46:31 -06:00
committed by GitHub
parent 23f647ce22
commit 3f0d7457c3

View File

@@ -26,7 +26,7 @@ export default function getAvailableOperatorsForType(type: string): OperatorType
case 'boolean':
return {
type: 'checkbox',
operators: ['eq', 'empty', 'nempty'],
operators: ['eq', 'neq', 'empty', 'nempty'],
};
// Numbers
case 'integer':