From 5f622696fab34c9d675a35d96bfea7356e0c34cd Mon Sep 17 00:00:00 2001 From: Avery Lee Date: Thu, 23 Jan 2025 15:29:01 -0800 Subject: [PATCH] Remove debugging statements. --- .../static/dispatch/src/dashboard/case/CaseCostBarChartCard.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/dispatch/static/dispatch/src/dashboard/case/CaseCostBarChartCard.vue b/src/dispatch/static/dispatch/src/dashboard/case/CaseCostBarChartCard.vue index 8146255c2e66..05f2d1c23a40 100644 --- a/src/dispatch/static/dispatch/src/dashboard/case/CaseCostBarChartCard.vue +++ b/src/dispatch/static/dispatch/src/dashboard/case/CaseCostBarChartCard.vue @@ -93,8 +93,6 @@ export default { } }, series() { - console.log('series') - console.log(this.modelValue) let series = { name: "cost", data: [] } forEach(this.modelValue, function (value) { series.data.push(sumBy(value, "total_cost"))