zalmoxisus / redux-devtools-extension

Redux DevTools extension.
MIT License
13.49k stars 1.01k forks source link

Immutable OrderedMap shows up in the wrong order #339

Open jwyuen opened 7 years ago

jwyuen commented 7 years ago

Hello! I'm using ImmutableJS data structures with my redux store and it mostly works with Redux DevTools. I'm using the extension downloaded from the Chrome store (v2.14.3). One thing I've noticed is that when I use OrderedMap, the order of the items inside don't get displayed correctly when viewing the state in the DevTools. I did verify that they are in the correct order though using console.log so I think it's an issue with DevTools....

zalmoxisus commented 7 years ago

Yes, the problem is that it's converted into an object to be passed to the monitors. We should convert it to ES6 Map as we got support for it recently.