From 8e4e1dc749e2b8ece6df13aa22b2f692afa05b1d Mon Sep 17 00:00:00 2001 From: ssongliu <73214554+ssongliu@users.noreply.github.com> Date: Thu, 5 Feb 2026 16:26:55 +0800 Subject: [PATCH] fix: Fix hostname cache refresh abnormality on overview page (#11802) --- frontend/src/views/home/index.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/views/home/index.vue b/frontend/src/views/home/index.vue index 7ef623f73..ea8115da2 100644 --- a/frontend/src/views/home/index.vue +++ b/frontend/src/views/home/index.vue @@ -650,6 +650,7 @@ const toggleSensitiveInfo = () => { const refreshDashboard = async () => { clearDashboardCache(); + onLoadBaseInfo(false, ''); hasRefreshedOptionsOnHover.value = false; await Promise.allSettled([onLoadNetworkOptions(true), onLoadIOOptions(true), loadSafeStatus()]); MsgSuccess(i18n.global.t('commons.msg.refreshSuccess')); @@ -739,7 +740,7 @@ const handleCopy = () => { ': ' + baseInfo.value.kernelVersion + '\n' + - i18n.global.t('home.kernelVersion') + + i18n.global.t('home.kernelArch') + ': ' + baseInfo.value.kernelArch + '\n' +