We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d1fc6e commit 4a20a63Copy full SHA for 4a20a63
packages/ui/src/elements/WhereBuilder/Condition/index.tsx
@@ -118,7 +118,10 @@ export const Condition: React.FC<Props> = (props) => {
118
119
let valueOptions
120
if (booleanSelect) {
121
- valueOptions = [t('general:true'), t('general:false')]
+ valueOptions = [
122
+ { label: t('general:true'), value: 'true' },
123
+ { label: t('general:false'), value: 'false' },
124
+ ]
125
} else if (internalField?.props && 'options' in internalField.props) {
126
valueOptions = internalField.props.options
127
}
0 commit comments