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 2837246 commit 6519621Copy full SHA for 6519621
DashboardPanelCollection.module
@@ -44,13 +44,13 @@ class DashboardPanelCollection extends DashboardPanel
44
$this->columns['actions__'] = ''; // $this->_('Actions');
45
}
46
47
+ $pages = $this->collection->getArray();
48
$columns = $this->parseColumnDefinitions();
-
49
$rows = array_map(function ($page) use ($columns) {
50
return array_map(function ($column) use ($page) {
51
return $this->renderCellContent($page, $column);
52
}, $columns);
53
- }, $this->collection->getArray());
+ }, $pages);
54
55
if ($this->showHeaders) {
56
$headers = array_map(function ($column) {
0 commit comments