From c8b08b9e2df8eca9780ec875cac063eb6380f7a4 Mon Sep 17 00:00:00 2001 From: jorgep Date: Tue, 23 Apr 2024 12:34:38 +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 3a3361657..6d0badffb 100644 --- a/src/components/common/VnCard.vue +++ b/src/components/common/VnCard.vue @@ -35,7 +35,7 @@ const arrayData = useArrayData(props.dataKey, { }); onBeforeMount(async () => { - arrayData.store.filter.where = { id: route.params.id }; + if (!props.baseUrl) arrayData.store.filter.where = { id: route.params.id }; await arrayData.fetch({ append: false }); });