Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mloppie committed Oct 9, 2024
1 parent 7b5e1b7 commit 63ca70f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,7 @@ const preparedCharts = computed(() => {
Object.entries(groupedInterventionOutputs.value).forEach((item) => {
item[1].forEach((intervention) => {
charts[variable].layer.push(...createInterventionChartMarkers(intervention, false, -180));
charts[variable].layer.push(...createInterventionChartMarkers([intervention], false, -180));
});
});
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ const preparedCharts = computed(() => {
applyForecastChartAnnotations(chart, annotations);
Object.entries(groupedInterventionOutputs.value).forEach((item) => {
item[1].forEach((intervention) => {
chart.layer.push(...createInterventionChartMarkers(intervention, false, -80));
chart.layer.push(...createInterventionChartMarkers([intervention], false, -80));
});
});
return chart;
Expand Down

0 comments on commit 63ca70f

Please sign in to comment.