mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-13 08:09:41 +00:00
Fix checking empty value. (#3084)
This commit is contained in:
parent
d17209e9ab
commit
d7579d3134
@ -114,7 +114,7 @@ class UIModelGrid
|
||||
$row[$fieldname] .= $fieldValue['value'];
|
||||
}
|
||||
}
|
||||
if (empty($row[$fieldname])) {
|
||||
if ($row[$fieldname] === null) {
|
||||
$row[$fieldname] = "";
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user