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
It seems like property observers are not called if the component is inside an iron-list template.
A dom-repeat renders fine outside of an iron-list but not inside of it.
If I call render on the dom-repeat it renders normally.
Thanks for reporting this. We can confirm this issue. There's a simple fix and it should make the first bug release version.
The issue is in PropertyEffects at _readyClients. If a client has enabled properties prior to an element readying its clients (this can happen when using templatize), the host element should call _flushProperties on it.
… properties. This can happen when templatize is used to create instances with no properties. In this case, in order for properties to flush properly to clients, clients must be flushed.
Description
It seems like property observers are not called if the component is inside an iron-list template.
A dom-repeat renders fine outside of an iron-list but not inside of it.
If I call
render
on the dom-repeat it renders normally.Live Demo
http://jsbin.com/pulaworude/edit?html,js,output
Expected Results
dom-repeat renders items
Actual Results
dom-repeat does not render items
Browsers Affected
Versions
It works with version
2.0.0-rc.8
. First broken version is2.0.0-rc.9
.The text was updated successfully, but these errors were encountered: