From 4b72bfd76d5f54368d3ee0c67b1c4b4d2219ac60 Mon Sep 17 00:00:00 2001 From: MaysWind Date: Fri, 16 Jan 2026 23:55:50 +0800 Subject: [PATCH] fix the changes are cleared after changing date range under "New Explorer" --- src/views/desktop/insights/ExplorerPage.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/desktop/insights/ExplorerPage.vue b/src/views/desktop/insights/ExplorerPage.vue index 88a3388f..d9251291 100644 --- a/src/views/desktop/insights/ExplorerPage.vue +++ b/src/views/desktop/insights/ExplorerPage.vue @@ -399,7 +399,7 @@ function init(initProps: InsightsExplorerProps): void { if (explorersStore.currentInsightsExplorer.id !== initProps.initId) { needReload = true; } - } else { + } else if (!initProps.initId && !initProps.initActiveTab && !initProps.initDateRangeType && !initProps.initStartTime && !initProps.initEndTime) { // first time open the page explorersStore.updateCurrentInsightsExplorer(InsightsExplorer.createNewExplorer(generateRandomUUID())); isCurrentExplorerModified.value = true; }