From a4e9908b437f1113cdd3d2fd701101da6e299a0a Mon Sep 17 00:00:00 2001 From: KitAndrew Date: Fri, 21 Nov 2025 11:02:59 +0800 Subject: [PATCH] fix: update current service in store before navigating to dashboard (#514) --- src/views/dashboard/graphs/ServiceList.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/views/dashboard/graphs/ServiceList.vue b/src/views/dashboard/graphs/ServiceList.vue index a7e3260c..6ad71012 100644 --- a/src/views/dashboard/graphs/ServiceList.vue +++ b/src/views/dashboard/graphs/ServiceList.vue @@ -191,6 +191,7 @@ limitations under the License. --> ElMessage.error("No this dashboard"); return; } + selectorStore.setCurrentService(scope.row); const path = `/dashboard/${dashboard.layer}/${dashboard.entity}/${scope.row.id}/${dashboard.name}`; router.push(path);