From 65243c68c463cc055ab044093f641ea5d2e9e28b Mon Sep 17 00:00:00 2001 From: ssongliu Date: Thu, 24 Sep 2026 10:18:01 +0800 Subject: [PATCH] fix: allow licensed community restore progress route (#13913) --- frontend/src/routers/index.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/src/routers/index.ts b/frontend/src/routers/index.ts index 1aaf6b974..292eb5c18 100644 --- a/frontend/src/routers/index.ts +++ b/frontend/src/routers/index.ts @@ -30,7 +30,8 @@ const clearLoginStatus = () => { }; router.beforeEach(async (to, from) => { - const { entrance, isEnterprise, isEnterpriseLicenseLoaded, isEnterpriseLicensed, isLogin } = useGlobalStore(); + const { entrance, isEnterprise, isEnterpriseLicenseLoaded, isEnterpriseLicensed, isLogin, isOnRestart } = + useGlobalStore(); NProgress.start(); axiosCanceler.removeAllPending(); @@ -88,7 +89,7 @@ router.beforeEach(async (to, from) => { params: to.params, }; } - if (!isEnterprise.value || isEnterpriseLicensed.value) { + if (!isEnterprise.value || (isEnterpriseLicensed.value && !isOnRestart.value)) { NProgress.done(); return { name: 'home' }; }