From 3bdd07fac7c75b6f6092932db41d0765568e1912 Mon Sep 17 00:00:00 2001 From: ZLY Date: Thu, 25 Sep 2025 10:39:02 +0800 Subject: [PATCH] =?UTF-8?q?pref(store):=20=E4=BC=98=E5=8C=96updateFlowData?= =?UTF-8?q?=E7=9A=84=E5=A4=84=E7=90=86=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/store/ideContainer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/ideContainer.ts b/src/store/ideContainer.ts index 30c54d9..6cda04c 100644 --- a/src/store/ideContainer.ts +++ b/src/store/ideContainer.ts @@ -25,7 +25,7 @@ const ideContainerSlice = createSlice({ state.menuData = action.payload; }, updateFlowData(state, action) { - state.flowData = action.payload; + state.flowData = { ...state.flowData, ...action.payload }; }, updateLogBarStatus(state, action) { state.logBarStatus = action.payload;