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
First of all, thanks for this great mixin! I'm currently trying to loop over some items in my Redux Store. The dom-repeat is bound to the routes property like this (I know I can also use static binding, but this way I'm able to console.log the state change). After each update it fires the console.log in the statePath(state) function - with the correct data. However my dom-repeat doesn't update the view.
I can see [[item.properties.name]], I can't see [[item.properties.totalRouteDistance]], [[item.properties.distance]] while they are in the console.log output.
I also have set up a deep observer to see if the property gets updated. It fires the console.log in the statePath change (see code above) but it DOESN'T fire the deep observer _routesChanged.
Hi!
First of all, thanks for this great mixin! I'm currently trying to loop over some items in my Redux Store. The dom-repeat is bound to the
routes
property like this (I know I can also use static binding, but this way I'm able toconsole.log
the state change). After each update it fires theconsole.log
in the statePath(state) function - with the correct data. However mydom-repeat
doesn't update the view.I can see
[[item.properties.name]]
, I can't see[[item.properties.totalRouteDistance]]
,[[item.properties.distance]]
while they are in theconsole.log
output.Properties in my element
I also have set up a deep observer to see if the property gets updated. It fires the
console.log
in the statePath change (see code above) but it DOESN'T fire the deep observer_routesChanged
.Calling the reducer:
Updating routes reducer:
Wat could be the solution?
The text was updated successfully, but these errors were encountered: