From 2b3dbd0b5d31618c257e1afa3d2edca97705b858 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, 20 Nov 2025 17:45:16 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E4=BB=AA=E8=A1=A8=E6=9D=BF=E3=80=81?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=A4=A7=E5=B1=8F):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E5=A4=96=E9=83=A8=E5=8F=82=E6=95=B0=E5=85=B3=E8=81=94=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E7=BB=84=E4=BB=B6=E5=90=8E=EF=BC=8C=E4=BF=9D=E5=AD=98?= =?UTF-8?q?=E8=AE=BE=E7=BD=AE=E5=A4=B1=E8=B4=A5=E9=97=AE=E9=A2=98=20(#1746?= =?UTF-8?q?6)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/visualization/OuterParamsSet.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/core-frontend/src/components/visualization/OuterParamsSet.vue b/core/core-frontend/src/components/visualization/OuterParamsSet.vue index 8367ed8d2a..feb69c3f18 100644 --- a/core/core-frontend/src/components/visualization/OuterParamsSet.vue +++ b/core/core-frontend/src/components/visualization/OuterParamsSet.vue @@ -571,7 +571,7 @@ const paramsCheckedAdaptor = (outerParamsInfo, newBaseFilterInfo, newBaseDataset outerParamsInfo.targetViewInfoList.forEach(targetViewInfo => { viewMatchIds.push(targetViewInfo.targetViewId) dsFieldIdSelected[targetViewInfo.targetDsId] = - targetViewInfo.targetFieldId === 'empty' + targetViewInfo.targetFieldId === '999999' ? targetViewInfo.targetViewId : targetViewInfo.targetFieldId }) @@ -642,7 +642,7 @@ const save = () => { outerParamsInfo.targetViewInfoList.push({ targetViewId: baseFilterInfo.filterSelected, targetDsId: baseFilterInfo.id, - targetFieldId: 'empty' + targetFieldId: '999999' }) } }) @@ -714,7 +714,7 @@ const getPanelViewList = dvId => { title: filterItem.name }) state.viewIdFieldArrayMap[filterItem.id] = [ - { id: 'empty', name: t('visualization.filter_no_select') } + { id: '999999', name: t('visualization.filter_no_select') } ] }) }