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
actually i think this reveals a larger bug that any change to children must be done while not expanded. any other change to children while expanded will cause some... problems
This code fails:
because the
expanded
setter will early-exit if no children are present. the code needs to be:https://github.com/gridgrid/grid/blob/master/src/modules/abstract-row-col-model/index.js#L316
^it seems this should only early exit when trying to set
expanded
totrue
when no children are present.The text was updated successfully, but these errors were encountered: