Merge pull request #33378 from backstage/fix/table-complete-mode-loading

Fix Table loading skeleton not showing for complete mode with getData
This commit is contained in:
Charles de Dreuille
2026-03-17 07:18:44 +00:00
committed by GitHub
2 changed files with 11 additions and 3 deletions
@@ -0,0 +1,5 @@
---
'@backstage/ui': patch
---
Fixed a bug in the `useTable` hook where the loading skeleton was never shown for `complete` mode when using `getData`. The initial data state was an empty array instead of `undefined`, causing the `Table` component to skip the loading state.