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
After viewing a list (ConfigMaps reproduced), pressing the browser Back button from a row's detail page while the detail is still loading lands the user on the list view, where rows briefly paint from cache and then disappear. The table flips to "There are no rows to show". The underlying resources still exist and a page reload restores them.
To Reproduce
Log in to Rancher dashboard.
Open any cluster (local reproduces).
Navigate to a list view backed by SortableTable (Storage → ConfigMaps reproduces; expected to apply to all list views).
Wait for rows to render.
Click a row to open its detail page.
While the detail page is still showing "Loading..." (do not wait for it to finish), press the browser Back button.
Observe the list view.
Result
List paints with cached rows for ~500ms.
Rows vanish; table flips to "There are no rows to show".
Underlying resources still exist; reload restores them.
Expected Result
Cached rows remain visible.
The list re-fetch completes and either keeps the rows or refreshes them — never blanks the view.
Screenshots
race-condition.mp4
Additional context
initial render race between find()/load() and invalidatePageCache
Setup
head(2.15)Describe the bug
After viewing a list (
ConfigMapsreproduced), pressing the browserBackbutton from a row's detail page while the detail is still loading lands the user on the list view, where rows briefly paint from cache and then disappear. The table flips to "There are no rows to show". The underlying resources still exist and a page reload restores them.To Reproduce
Result
Expected Result
Screenshots
race-condition.mp4
Additional context
initial render race between find()/load() and invalidatePageCache