We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
getBooleanValueFromValue
1 parent a8aabe9 commit 5a5b3aaCopy full SHA for 5a5b3aa
1 file changed
src/main/components/editors/checkbox/UIEditorCheckbox.tsx
@@ -71,7 +71,7 @@ export const getBooleanValueFromValue = (value: any, selectedValue: any, dataTyp
71
72
if (
73
dataTypeIdentifier === DataTypeIdentifier.BigDecimal &&
74
- value.toString() === selectedValue.toString()
+ value?.toString() === selectedValue.toString()
75
) {
76
return true;
77
}
0 commit comments