From 929a094132b6c0181ef5b773b989daf073b5081a Mon Sep 17 00:00:00 2001 From: Kevin Martinez Date: Fri, 23 Feb 2024 15:30:45 -0300 Subject: [PATCH] Fix route table navigation --- src/pages/Route/RouteAutonomous.vue | 7 ++++++- src/pages/Route/RouteRoadmap.vue | 8 +++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/src/pages/Route/RouteAutonomous.vue b/src/pages/Route/RouteAutonomous.vue index 0c504ba9f..8d1a7f6fd 100644 --- a/src/pages/Route/RouteAutonomous.vue +++ b/src/pages/Route/RouteAutonomous.vue @@ -131,6 +131,10 @@ const openCreateInvoiceIn = () => { router.push({ name: 'RouteAutonomousCreateInvoiceIn', query: { q: params } }); }; + +function navigateToRouteSummary(event, row) { + router.push({ name: 'RouteSummary', params: { id: row.routeFk } }) +}