From 3fc46081e267daaf218da477e02cc8b0a4bff734 Mon Sep 17 00:00:00 2001 From: Halo Dev Bot <87291978+halo-dev-bot@users.noreply.github.com> Date: Fri, 10 Feb 2023 14:22:19 +0800 Subject: [PATCH] [release-2.2] perf: fix CLS issue of actuator page (#842) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is an automated cherry-pick of #840 /assign ruibaby ```release-note 修复 Console 端进入系统概览页面会抖动的问题。 ``` --- src/modules/system/actuator/Actuator.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/system/actuator/Actuator.vue b/src/modules/system/actuator/Actuator.vue index 04e0d73c..81fbf013 100644 --- a/src/modules/system/actuator/Actuator.vue +++ b/src/modules/system/actuator/Actuator.vue @@ -50,7 +50,7 @@ const handleFetchActuatorStartup = async () => { const isExternalUrlValid = computed(() => { if (!globalInfo.value?.externalUrl) { - return false; + return true; } const url = new URL(globalInfo.value.externalUrl); const { host: currentHost, protocol: currentProtocol } = window.location;