Skip to content

Commit beb8965

Browse files
fix(selection): empty is not the same as null
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
1 parent c89113f commit beb8965

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/Service/ColumnTypes/SelectionBusiness.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function parseDisplayValue($value, Column $column): string {
4747
* @return bool
4848
*/
4949
public function canBeParsed($value, Column $column): bool {
50-
if ($value === null || $value === '') {
50+
if ($value === null) {
5151
return true;
5252
}
5353

0 commit comments

Comments
 (0)