From 22d8fb786790126fb5af164e00c9b91f75f6190e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=98=AD?= <81747598+lan-yonghui@users.noreply.github.com> Date: Mon, 30 Jun 2025 19:11:31 +0800 Subject: [PATCH] fix: Fix the display error of the sub node website icon (#9348) --- frontend/src/utils/xpack.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/utils/xpack.ts b/frontend/src/utils/xpack.ts index ce82b6c92..2e4ad19a2 100644 --- a/frontend/src/utils/xpack.ts +++ b/frontend/src/utils/xpack.ts @@ -14,7 +14,7 @@ export function resetXSetting() { export function initFavicon() { document.title = globalStore.themeConfig.panelName; const favicon = globalStore.themeConfig.favicon; - const isPro = globalStore.isProductPro; + const isPro = globalStore.isMasterProductPro; const themeColor = globalStore.themeConfig.primary; const customFaviconUrl = `/api/v2/images/favicon?t=${Date.now()}`;