From de50676c65627c2cfcd4cf7f288aa3e9e3ea7f43 Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Wed, 16 Apr 2025 14:39:07 +0200 Subject: [PATCH] fix: re-call workerSummary --- src/components/ui/EntityDescriptor.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/ui/EntityDescriptor.vue b/src/components/ui/EntityDescriptor.vue index e6adaa5f7..751a6bd9c 100644 --- a/src/components/ui/EntityDescriptor.vue +++ b/src/components/ui/EntityDescriptor.vue @@ -44,8 +44,7 @@ onBeforeMount(async () => { }); // It enables to load data only once if the module is the same as the dataKey - if (!isSameDataKey.value || !route.params.id || $props.id !== route.params.id) - await getData(); + if (!isSameDataKey.value || !route.params.id) await getData(); watch( () => [$props.url, $props.filter], async () => {