Fixed error with ready for summit method for panel (#440)

pull/3759/head
Yamel Senih 2020-04-07 18:26:21 -04:00 committed by GitHub
parent 8a792e1803
commit b653f430cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1027,7 +1027,7 @@ const panel = {
if (row) {
value = row[fieldItem.columnName]
}
if (fieldIsDisplayed(fieldItem) && isMandatory && isEmptyValue(value)) {
if (fieldIsDisplayed(fieldItem) && isMandatory && !isEmptyValue(value)) {
return true
}
})