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
items is a static array of complex objects generated asynchronously
Not loading vertical-collection until the objects are ready
It shows the first two (or more if buffer size arg is used) but never shows the rest. I'd expect them to appear as the user scrolls down. The closing occluded content has the correct initial height but the opening content always has a height of 0 and the closing content height doesn't change
<divstyle="height: 100vh;">
{{#let (awaitthis.pages) as |pages|}}{{#ifpages}}
<VerticalCollection
@items={{pages}}
@estimateHeight="868"
@key="_pageIndex"
as | page |>
<divpage={{page._pageIndex}}{{render-pdf-pagepage}} />
</VerticalCollection>
{{/if}}{{/let}}
</div>
The text was updated successfully, but these errors were encountered:
It's designed to work with whatever CSS you bring, but that does have constraints (if you want div vs body scrolling that needs to be setup, and the layout can't have errors meaning the browser needs to be able to correctly ascertain the positioning and height, which lots of folks don't realize they write broken css but lots of layouts are broken)
items is a static array of complex objects generated asynchronously
Not loading vertical-collection until the objects are ready
It shows the first two (or more if buffer size arg is used) but never shows the rest. I'd expect them to appear as the user scrolls down. The closing occluded content has the correct initial height but the opening content always has a height of 0 and the closing content height doesn't change
The text was updated successfully, but these errors were encountered: