From ace2557a604e8b6073ffb664569d1e6847d31f2c Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Fri, 1 May 2026 01:43:57 +0000 Subject: [PATCH] Fix navigation from RMO status page on report table --- ts/rmo/components/TableReport.vue | 7 ++++--- ts/rmo/content/Status.vue | 11 ++++++++++- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/ts/rmo/components/TableReport.vue b/ts/rmo/components/TableReport.vue index fefc5005..55941d03 100644 --- a/ts/rmo/components/TableReport.vue +++ b/ts/rmo/components/TableReport.vue @@ -141,7 +141,7 @@ const props = withDefaults(defineProps(), { // Define emits const emit = defineEmits<{ - (e: "row-clicked", reportId: string): void; + (e: "rowClicked", reportId: string): void; }>(); /** @@ -191,7 +191,8 @@ const formatId = (id: string): string => { /** * Handle row click event */ -const handleRowClick = (reportId: string): void => { - emit("row-clicked", reportId); +const handleRowClick = (report_id: string): void => { + console.log("row clicked", report_id); + emit("rowClicked", report_id); }; diff --git a/ts/rmo/content/Status.vue b/ts/rmo/content/Status.vue index 0d72319a..f76f47c2 100644 --- a/ts/rmo/content/Status.vue +++ b/ts/rmo/content/Status.vue @@ -161,7 +161,10 @@
- +