fix: (regression 0.48.0) admin: occasional crash while opening pages
Massimo Melina committed
Sep 14, 2023 at 19:26 UTC
13b8aec787012933bf667fc45428866896eecf79
1 file changed
+1
-1
admin/src/api.ts
+1
-1
@@ -29,7 +29,7 @@ export function useApiEx<T=any>(...args: Parameters<typeof useApi>) {
29
!args[0] ? null
30
: res.error ? h(Alert, { severity: 'error' }, xlate(String(res.error), ERRORS),
31
h(IconBtn, { icon: Refresh, onClick: res.reload, sx: { m:'-10px 0 -8px 16px' } }) )
32
- : res.loading ? spinner()
32
+ : res.loading || res.data === undefined ? spinner()
33
: null,
34
Object.values(res))
35
}