We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c97284 commit fa2e0d3Copy full SHA for fa2e0d3
src/Column/AbstractColumn.php
@@ -70,7 +70,7 @@ public function transform($value = null, $context = null)
70
$data = $this->options['data'];
71
if (is_callable($data)) {
72
$value = call_user_func($data, $context, $value);
73
- } elseif (empty($value)) {
+ } elseif (null === $value) {
74
$value = $data;
75
}
76
0 commit comments