Skip to content

Commit 13aa36f

Browse files
committed
Temporary solution for pseudo header values
1 parent d2c29c5 commit 13aa36f

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

src/Elements/TableRow.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,6 @@ public static function createFromArray(array $cellsArray) {
3131
if (!is_array($cell)) {
3232
// No array, use value as value:
3333
$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-
}
3834
$cells[] = $tableCell;
3935
} else {
4036
// Array value, use by keys:

0 commit comments

Comments
 (0)