From e62f9cbd0218b927e643bd55b5058d609af778bd Mon Sep 17 00:00:00 2001 From: hujiangnan Date: Mon, 30 Oct 2023 09:28:52 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BA=94=E8=AF=A5=E4=B8=BA=E5=93=8D=E5=BA=94?= =?UTF-8?q?=E5=BC=8Fref=E7=B1=BB=E5=9E=8B=EF=BC=8C=E5=9B=A0=E6=AD=A4?= =?UTF-8?q?=E6=9C=89value=EF=BC=8C=E5=8E=9F=E6=9D=A5=E5=86=99=E6=B3=95?= =?UTF-8?q?=E4=BC=9A=E9=80=A0=E6=88=90undefined=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/hooks/useChartDataPondFetch.hook.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/useChartDataPondFetch.hook.ts b/src/hooks/useChartDataPondFetch.hook.ts index a506f274..02507a50 100644 --- a/src/hooks/useChartDataPondFetch.hook.ts +++ b/src/hooks/useChartDataPondFetch.hook.ts @@ -116,7 +116,7 @@ export const useChartDataPondFetch = () => { const requestDataPondItem = computed(() => { return requestGlobalConfig.requestDataPond.find(item => item.dataPondId === pondKey) }) as ComputedRef - if (requestDataPondItem) { + if (requestDataPondItem.value) { newPondItemInterval(chartEditStore.requestGlobalConfig, requestDataPondItem, mittDataPondMap.get(pondKey)) } }