You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 27, 2018. It is now read-only.
The new redux devtools extension from version v2.14.0 and up has support for that { serialize: true }.
Unfortunately, @ngrx/store-devtools doesn't support that just yet.
So, my work around in the meantime for nice development experience is to add the .toJSON method to the Map prototype which works great and I can see my maps in state in redux dev tools.
if (environment.envName === 'dev') {
(Map.prototype as any).toJSON = function () {
return JSON.parse(JSON.stringify([...this]));
};
}
Please provide me with instructions on how to pass the
{serialize: true}
parameter to allow ES6 Sets to be seen in store-devtoolszalmoxisus/redux-devtools-extension#378
The following won't even compile due to mistyping:
The text was updated successfully, but these errors were encountered: