mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-27 08:30:02 +03:00
Fix
This commit is contained in:
parent
a543142656
commit
a6462e5f21
|
@ -44,7 +44,7 @@ export function compare<S>(
|
||||||
path += '.length';
|
path += '.length';
|
||||||
} else if (event.type === 'add-item') {
|
} else if (event.type === 'add-item') {
|
||||||
generate({ type: 'move-item', newPath: event.newPath });
|
generate({ type: 'move-item', newPath: event.newPath });
|
||||||
path += `[${event.newIndex}]`;
|
path += `[${event.newIndex!}]`;
|
||||||
curState = stringify(event.newValue);
|
curState = stringify(event.newValue);
|
||||||
} else {
|
} else {
|
||||||
curState = stringify(event.newValue);
|
curState = stringify(event.newValue);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user