We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2c29c5 commit 13aa36fCopy full SHA for 13aa36f
1 file changed
src/Elements/TableRow.php
@@ -31,10 +31,6 @@ public static function createFromArray(array $cellsArray) {
31
if (!is_array($cell)) {
32
// No array, use value as value:
33
$tableCell = new TableCell($key, $cell);
34
- // TODO - Dirty workarund to hide empty (null) values and headers
35
- if ($cell === null) {
36
- $tableCell->setHidden(true);
37
- }
38
$cells[] = $tableCell;
39
} else {
40
// Array value, use by keys:
0 commit comments