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
I'm using a BasicTable with a ComputedColumn that renders a popover for each row. I'm having an issue where the popover closes / loses state after loading the BasicTable with updated data. I'm setting isLoading: true before fetching the data and then setting it back to isLoading: false afterwards. Without doing so, everything works fine.
After talking with @chandlerprall, when isLoading is true, the BasicTable is swapping out the EuiTableBody for LoadingTableBody , but rendering the same rows object. However, React sees the wrapping component as fundamentally different and "necessarily" unmounts & remounts everything.
The text was updated successfully, but these errors were encountered:
I'm using a
BasicTable
with aComputedColumn
that renders a popover for each row. I'm having an issue where the popover closes / loses state after loading theBasicTable
with updated data. I'm settingisLoading: true
before fetching the data and then setting it back toisLoading: false
afterwards. Without doing so, everything works fine.After talking with @chandlerprall, when
isLoading
is true, theBasicTable
is swapping out theEuiTableBody
forLoadingTableBody
, but rendering the same rows object. However, React sees the wrapping component as fundamentally different and "necessarily" unmounts & remounts everything.The text was updated successfully, but these errors were encountered: