Fixed error with ready for summit method for panel (#440)
parent
8a792e1803
commit
b653f430cd
|
@ -1027,7 +1027,7 @@ const panel = {
|
||||||
if (row) {
|
if (row) {
|
||||||
value = row[fieldItem.columnName]
|
value = row[fieldItem.columnName]
|
||||||
}
|
}
|
||||||
if (fieldIsDisplayed(fieldItem) && isMandatory && isEmptyValue(value)) {
|
if (fieldIsDisplayed(fieldItem) && isMandatory && !isEmptyValue(value)) {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue