From 63ca70f95d73af276c268d42d7db2918f8baf7d7 Mon Sep 17 00:00:00 2001 From: mloppie Date: Wed, 9 Oct 2024 15:28:29 -0400 Subject: [PATCH] lint --- .../ops/calibrate-ciemss/tera-calibrate-ciemss-drilldown.vue | 2 +- .../ops/calibrate-ciemss/tera-calibrate-node-ciemss.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/client/hmi-client/src/components/workflow/ops/calibrate-ciemss/tera-calibrate-ciemss-drilldown.vue b/packages/client/hmi-client/src/components/workflow/ops/calibrate-ciemss/tera-calibrate-ciemss-drilldown.vue index c0c5b71ea1..9261e9c7fa 100644 --- a/packages/client/hmi-client/src/components/workflow/ops/calibrate-ciemss/tera-calibrate-ciemss-drilldown.vue +++ b/packages/client/hmi-client/src/components/workflow/ops/calibrate-ciemss/tera-calibrate-ciemss-drilldown.vue @@ -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)); }); }); }); diff --git a/packages/client/hmi-client/src/components/workflow/ops/calibrate-ciemss/tera-calibrate-node-ciemss.vue b/packages/client/hmi-client/src/components/workflow/ops/calibrate-ciemss/tera-calibrate-node-ciemss.vue index 0b6804be53..b34b5b62d3 100644 --- a/packages/client/hmi-client/src/components/workflow/ops/calibrate-ciemss/tera-calibrate-node-ciemss.vue +++ b/packages/client/hmi-client/src/components/workflow/ops/calibrate-ciemss/tera-calibrate-node-ciemss.vue @@ -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;