Skip to content

Commit 53dff7f

Browse files
authored
Fix column not found error
1 parent 8cc054f commit 53dff7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Controllers/ModelController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public function filter_pivot($columns)
116116
{
117117
$filtered = $columns;
118118
foreach ($filtered as $columnId => $column) {
119-
if ($column['type'] == 'pivot') {
119+
if ($column['type'] == 'pivot' || $column['type'] == 'rows') {
120120
unset($filtered[$columnId]);
121121
}
122122
}

0 commit comments

Comments
 (0)