From f8c238f4439097f98a1deeede85cb3706e32cc54 Mon Sep 17 00:00:00 2001 From: jorgep Date: Tue, 23 Apr 2024 12:04:24 +0200 Subject: [PATCH] fix: refs #6480 fix workerCard --- src/components/common/VnCard.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/common/VnCard.vue b/src/components/common/VnCard.vue index c9f0437026..3a33616578 100644 --- a/src/components/common/VnCard.vue +++ b/src/components/common/VnCard.vue @@ -35,8 +35,8 @@ const arrayData = useArrayData(props.dataKey, { }); onBeforeMount(async () => { - await arrayData.fetch({ append: false }); arrayData.store.filter.where = { id: route.params.id }; + await arrayData.fetch({ append: false }); }); if (props.baseUrl) {