mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-04-05 01:04:15 +03:00
don't delete @@INIT
This commit is contained in:
parent
f0e1efdcc2
commit
9bafa7a0d7
|
@ -236,10 +236,10 @@ function liftReducerWith(reducer, initialCommittedState, monitorReducer, options
|
|||
}
|
||||
case ActionTypes.PERFORM_ACTION: {
|
||||
if (options.maxAge && stagedActionIds.length === options.maxAge) {
|
||||
// If maxAge has been reached, remove oldest action
|
||||
delete actionsById[stagedActionIds[0]];
|
||||
// If maxAge has been reached, remove oldest action.
|
||||
delete actionsById[stagedActionIds[1]];
|
||||
skippedActionIds = skippedActionIds.filter(id => id !== stagedActionIds[0]);
|
||||
stagedActionIds = stagedActionIds.slice(1);
|
||||
stagedActionIds = [0].concat(stagedActionIds.slice(2));
|
||||
committedState = computedStates[1].state;
|
||||
computedStates = computedStates.slice(1);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user