From ad1fc9b9c79b49589bd7b0dbb6eb6228208fa72b Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Sat, 20 Dec 2025 07:55:27 +0100 Subject: [PATCH] Do not show ErrorDialog on network errors --- dashboard/src/components/RequestErrorDialog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/components/RequestErrorDialog.vue b/dashboard/src/components/RequestErrorDialog.vue index 19f49c0eb..36cba6463 100644 --- a/dashboard/src/components/RequestErrorDialog.vue +++ b/dashboard/src/components/RequestErrorDialog.vue @@ -11,7 +11,7 @@ const stackTrace = ref(''); async function onError(error) { // this is handled by the fetcher global error hook - if (error.status === 401 || error.status >= 502) return; + if (error.status === 401 || error.status >= 502 || error instanceof TypeError) return; console.error(error);