Minor action fix

This commit is contained in:
frikky
2022-01-31 12:27:01 +01:00
parent a811036fb2
commit 4e3f0833ad
+1 -1
View File
@@ -1349,7 +1349,7 @@ const ParsedAction = (props) => {
// <CodeMirror
//fullWidth
var baseHelperText = ""
if (data.value.length > 0) {
if (data !== undefined && data !== null && data.value !== undefined && data.value !== null && data.value.length > 0) {
baseHelperText = calculateHelpertext(data.value)
}