In the uptime app we were experiencing expanding rows closing, then re-expanding on reloads of data (the app automatically refreshes every so often by default). leading to the behavior seen in the GIF below.

Looking at the HTML changes in the chrome debugger the issue seems to be the loading prop, probably this line where the table body is replaced, if I had to guess.
The temporary fix for us is to just disable loading, which isn't optimal. Ideally the loading animation could show on refreshes without clearing the table.
CC @shahzad31
In the uptime app we were experiencing expanding rows closing, then re-expanding on reloads of data (the app automatically refreshes every so often by default). leading to the behavior seen in the GIF below.
Looking at the HTML changes in the chrome debugger the issue seems to be the
loadingprop, probably this line where the table body is replaced, if I had to guess.The temporary fix for us is to just disable
loading, which isn't optimal. Ideally the loading animation could show on refreshes without clearing the table.CC @shahzad31