zalmoxisus / redux-devtools-extension

Redux DevTools extension.
MIT License
13.5k stars 1k forks source link

Redux Dev Tools Extension Slider not working properly #375

Open AlexSerbanG opened 7 years ago

AlexSerbanG commented 7 years ago

Hello, i am working on a react-redux project in .net core and I've been using the redux dev tool chrome extension. I can't pinpoint the moment when it stopped working but it might (not really sure) have something to do with the update of the SPA Templates by Microsoft a few days ago. Anyway, the tool does indeed track the actions being dispatched, but it cannot replay the @@router/location_change actions. So far i only use the standard layout with the counter and fetchdata components and whenever i navigate through the menu i see the actions being logged, but if I choose the slider to replay such actions (jump to previous pages) it doesn't navigate. Instead, it sits on the route i stopped at and if the actions happen to change anything on that page, they're visible on the screen, but if they're not, well....you get the point.

Please do help. Much obliged.

zalmoxisus commented 7 years ago

I'm not sure what could be the issue. How do you integrate the extension with .NET app? Can you share some code?

AlexSerbanG commented 7 years ago

The extension is the one on Google Chrome that i added from the Google Web Store. I'm not sure what code i could share that will be of any relevance. Are you asking for anything in particular?

zalmoxisus commented 7 years ago

Did I understand correctly that you're using .NET framework? Can you replicate the issue with our demos?

meiriko commented 6 years ago

I have a similar issue:

image

I tracked it down to missing height on an element. The element is:

<div class="actionListRows-4144605864" style="">

When you assign it:

flex: 1 1 0;

it renders okay:

image