Skip to content
Snippets Groups Projects
Commit a9dcd09d authored by Daniel Cothran's avatar Daniel Cothran
Browse files

Issue #3461759: TypeError: array_values(): Argument #1 ($array) must be of...

Issue #3461759: TypeError: array_values(): Argument #1 ($array) must be of type array, null given in array_values() - line 445 of ...Highcharts.php
parent cbe2b178
No related branches found
No related tags found
1 merge request!100Update Highcharts.php
Pipeline #227900 passed with warnings
......@@ -442,7 +442,7 @@ class Highcharts extends ChartBase implements ContainerFactoryPluginInterface {
}
// Remove machine names from series. Highcharts series must be an array.
$series = array_values($chart_definition['series']);
$series = !empty($chart_definition['series']) ? array_values($chart_definition['series']) : [];
unset($chart_definition['series']);
// Trim out empty options (excluding "series" for efficiency).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment