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;