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
From our investigation, the culprit seems to be the that this.wrapper.children doesn't contain the property assignedID.
Using the internal get items() seems to fix the issue, because it returns the component if it is alive.
Hello,
We were trying to use the
remove()
method available on theCollectionWrapper
and it doesn't seem to work.Lightning-ui/src/helpers/CollectionWrapper.js
Lines 132 to 143 in 1d9801d
From our investigation, the culprit seems to be the that
this.wrapper.children
doesn't contain the propertyassignedID
.Using the internal
get items()
seems to fix the issue, because it returns thecomponent
if it is alive.Lightning-ui/src/helpers/CollectionWrapper.js
Lines 526 to 534 in 1d9801d
If replacing the blocks that use
this.wrapper.children
withthis.items
seems good to you, I can provide a PR to be merged.The text was updated successfully, but these errors were encountered: