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;