From 1df528318853e2800d7c6874818c47cb4b004486 Mon Sep 17 00:00:00 2001 From: Catherine Renelle <32781029+catrenelle@users.noreply.github.com> Date: Sun, 15 Feb 2026 21:23:30 -0500 Subject: [PATCH] Fix legend hover not highlighting table row legendMouseOver receives (chartContext, config), not three parameters. The extra parameter was shifting config to undefined. Co-Authored-By: Claude Opus 4.6 --- frontend/src/views/reports/ReportsView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/reports/ReportsView.vue b/frontend/src/views/reports/ReportsView.vue index 7a07c2a..91c63e7 100644 --- a/frontend/src/views/reports/ReportsView.vue +++ b/frontend/src/views/reports/ReportsView.vue @@ -358,7 +358,7 @@ const spendingChartOptions = computed(() => ({ dataPointMouseLeave: () => { setChartHighlight(null) }, - legendMouseOver: (_ctx: any, _opts: any, config: any) => { + legendMouseOver: (_ctx: any, config: any) => { const labels = spending.value?.categories.map(c => c.categoryName) ?? [] setChartHighlight(labels[config.seriesIndex] ?? null) },