Skip to content

Commit

Permalink
ReportController: Fix collection addElement key
Browse files Browse the repository at this point in the history
  • Loading branch information
Timm Ortloff committed Feb 9, 2023
1 parent 632b183 commit 65e2ffd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/controllers/ReportController.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function editAction()
];

foreach ($this->report->getReportlets() as $key => $reportlet) {
$values['reportlet'][$key]['reportlet'] = $reportlet->getClass();
$values['reportlet'][$key]['reportlet_class'] = $reportlet->getClass();

foreach ($reportlet->getConfig() as $name => $value) {
$values['reportlet'][$key][$name] = $value;
Expand Down

0 comments on commit 65e2ffd

Please sign in to comment.