Maintenance: Skip null values for the param check to prevent errors on the to string cast.
This commit is contained in:
parent
7adc0a12d0
commit
e3afa31402
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ class App.FormHandlerCoreWorkflow
|
||||||
for value in values
|
for value in values
|
||||||
|
|
||||||
# false values are valid values e.g. for boolean fields (be careful)
|
# false values are valid values e.g. for boolean fields (be careful)
|
||||||
if value isnt undefined && paramValue isnt undefined
|
if value isnt undefined && paramValue isnt undefined && value isnt null && paramValue isnt null
|
||||||
if value.toString() == paramValue.toString()
|
if value.toString() == paramValue.toString()
|
||||||
valueFound = true
|
valueFound = true
|
||||||
break
|
break
|
||||||
|
|
Loading…
Reference in a new issue