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
In my testing, I found a small issue - when building a grid from existing serialized widgets, once the grid reaches a certain height element jump to the top of the page.
The issue is in the add_widget function, specifically, line 250, "this.add_faux_rows(pos.size_y);". pos has no "size_y" parameter when column and row values exist.
Changing this line to "this.add_faux_rows(size_y)" or readding those parameters to pos fixes the issue. Thanks!
The text was updated successfully, but these errors were encountered:
In my testing, I found a small issue - when building a grid from existing serialized widgets, once the grid reaches a certain height element jump to the top of the page.
The issue is in the add_widget function, specifically, line 250, "this.add_faux_rows(pos.size_y);". pos has no "size_y" parameter when column and row values exist.
Changing this line to "this.add_faux_rows(size_y)" or readding those parameters to pos fixes the issue. Thanks!
The text was updated successfully, but these errors were encountered: