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
I have a template repeat over inside an accordion and I attempt to select the last one. The last one does get the active attribute, but it doesn't actually expand.
<polymer-ui-accordion multi selected="{{ [ messages.length - 1 ] }}">
<template repeat="{{ message, i in messages }}">
<polymer-ui-collapsible class="message {{ {approval: message.approval, disapproval: message.disapproval} | tokenList }}">
so it seems the <polymer-ui-collapsible> is confused as it has the active attribute set, the polymer-selected class added, but the body has polymer-collapse-closed and overflow: hidden.
If you click the header to collapse it and then expand it again the widget starts working.
The text was updated successfully, but these errors were encountered:
I have a template repeat over inside an accordion and I attempt to select the last one. The last one does get the active attribute, but it doesn't actually expand.
which produces this on the last row:
so it seems the
<polymer-ui-collapsible>
is confused as it has the active attribute set, the polymer-selected class added, but the body has polymer-collapse-closed and overflow: hidden.If you click the header to collapse it and then expand it again the widget starts working.
The text was updated successfully, but these errors were encountered: