From a7a9fdaf5939afa2d63890f35a8e9bf051245694 Mon Sep 17 00:00:00 2001 From: Fine Date: Mon, 12 Jun 2023 11:11:56 +0800 Subject: [PATCH] fix: layer id --- .../related/continuous-profiling/components/InstanceList.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/dashboard/related/continuous-profiling/components/InstanceList.vue b/src/views/dashboard/related/continuous-profiling/components/InstanceList.vue index 86c6a7af..b60523b9 100644 --- a/src/views/dashboard/related/continuous-profiling/components/InstanceList.vue +++ b/src/views/dashboard/related/continuous-profiling/components/InstanceList.vue @@ -123,7 +123,7 @@ limitations under the License. --> return; } router.push( - `/dashboard/${dashboardStore.layer}/${EntityType[8].value}/${selectorStore.currentService.id}/${instance.id}/${scope.row.id}/${props.config.processDashboardName}`, + `/dashboard/${dashboardStore.layerId}/${EntityType[8].value}/${selectorStore.currentService.id}/${instance.id}/${scope.row.id}/${props.config.processDashboardName}`, ); } @@ -132,7 +132,7 @@ limitations under the License. --> return; } router.push( - `/dashboard/${dashboardStore.layer}/${EntityType[3].value}/${selectorStore.currentService.id}/${scope.row.id}/${props.config.instanceDashboardName}`, + `/dashboard/${dashboardStore.layerId}/${EntityType[3].value}/${selectorStore.currentService.id}/${scope.row.id}/${props.config.instanceDashboardName}`, ); }