We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a0583f commit fe1bff2Copy full SHA for fe1bff2
adminforth/spa/src/views/ListView.vue
@@ -331,7 +331,7 @@ async function init() {
331
await coreStore.fetchResourceFull({
332
resourceId: route.params.resourceId
333
});
334
-
+ isPageLoaded.value = true;
335
// !!! clear filters should be in same tick with sort assignment so that watch can catch it as one change
336
337
// try to init filters from query params
@@ -446,8 +446,4 @@ watch([sort], async () => {
446
setQuery({ sort: SortQuerySerializer.serialize(sort.value) });
447
448
449
-watch(() => coreStore.resource, () => {
450
- isPageLoaded.value = true;
451
-});
452
453
</script>
0 commit comments