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)) } }