Skip to content

Commit

Permalink
Fix post single-item grid rendering issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jcmoore committed Jun 7, 2016
1 parent a6490ab commit a3883ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/strand-item-recycler/strand-item-recycler.js
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ found here: https://github.com/Polymer/core-list
bound.height += delta;
itemRecycler._measurements.setHeight(bound.young, bound.height);

if (delta) {
if (delta || itemRecycler._itemHeight <= 0) {
if (bound.height) {
if (!itemRecycler._itemHeight) {
change = itemRecycler._accommodateGlobalHeightAdjustment(0|initialization, bound, delta);
Expand Down

0 comments on commit a3883ce

Please sign in to comment.