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 @@
- +