We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9e5cbd commit cbb0bd0Copy full SHA for cbb0bd0
frontend/src/App.tsx
@@ -91,7 +91,7 @@ function App() {
91
},
92
"spacer",
93
<>
94
- {state === "loading" ? (
+ {state !== "idle" ? (
95
<P title="Bezig met laden...">
96
<Solid.ArrowPathIcon
97
spin
frontend/src/pages/destructionlist/abstract/BaseListView.tsx
@@ -194,7 +194,7 @@ export function BaseListView({
194
a && b && (a.uuid === b.uuid || a.url === b.url),
195
fields,
196
filterTransform,
197
- loading: state === "loading",
+ loading: state !== "idle",
198
objectList: objectList,
199
page,
200
sort: sortable && sort,
0 commit comments