Fix for scheduled reports
This commit is contained in:
parent
cfe6a03b12
commit
61bf11e50c
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@ class RunReport extends Job
|
|||
|
||||
$reportType = $this->reportType;
|
||||
$config = $this->config;
|
||||
$config['subgroup'] = $config['subgroup'] ?: false; // don't yet support charts in export
|
||||
$config['subgroup'] = ! empty($config['subgroup']) ? $config['subgroup'] : false; // don't yet support charts in export
|
||||
|
||||
$isExport = $this->isExport;
|
||||
$reportClass = '\\App\\Ninja\\Reports\\' . Str::studly($reportType) . 'Report';
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue