From 662cf65ff2b1316ccf466c08449afa892aa98100 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Tue, 24 Feb 2026 10:58:07 +0100 Subject: [PATCH] Only update domains list if component is still mounted --- dashboard/src/views/DomainsView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/views/DomainsView.vue b/dashboard/src/views/DomainsView.vue index 2aafaeeaf..8e9cc6a8b 100644 --- a/dashboard/src/views/DomainsView.vue +++ b/dashboard/src/views/DomainsView.vue @@ -113,7 +113,7 @@ async function refreshDomains() { domains.value = result; - dashboardDomainComponent.value.updateDomains(result); + dashboardDomainComponent.value?.updateDomains(result); } onMounted(async () => {