From c2ad23a573c5eb10d9214bcaf8c56a60e6aae37a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=98=89=E8=B1=AA?= <42510293+ziyujiahao@users.noreply.github.com> Date: Thu, 23 Oct 2025 15:24:59 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E5=9B=BE=E8=A1=A8):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E9=83=A8=E5=88=86=E5=9B=BE=E8=A1=A8=E6=97=A0=E6=B3=95=E8=B7=B3?= =?UTF-8?q?=E8=BD=AC=E9=97=AE=E9=A2=98=20(#17245)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/chart/components/views/index.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/core/core-frontend/src/views/chart/components/views/index.vue b/core/core-frontend/src/views/chart/components/views/index.vue index 8cb92590b2..8c74438727 100644 --- a/core/core-frontend/src/views/chart/components/views/index.vue +++ b/core/core-frontend/src/views/chart/components/views/index.vue @@ -445,7 +445,11 @@ const jumpClick = param => { if (param.name) { const colList = [...param.dimensionList, ...param.quotaList] colList.forEach(dimensionItem => { - if (dimensionItem.id === param.name || dimensionItem.name === param.name) { + if ( + dimensionItem.id === param.name || + dimensionItem.value === param.name || + dimensionItem.name === param.name + ) { dimension = dimensionItem sourceInfo = param.viewId + '#' + dimension.id jumpInfo = nowPanelJumpInfo.value[sourceInfo]