diff --git a/ui/console-src/layouts/BasicLayout.vue b/ui/console-src/layouts/BasicLayout.vue index 862179444f..c5f0ef4afc 100644 --- a/ui/console-src/layouts/BasicLayout.vue +++ b/ui/console-src/layouts/BasicLayout.vue @@ -209,7 +209,7 @@ onMounted(() => { class="mt-auto p-4 text-center text-sm" > Powered by - + Halo diff --git a/ui/console-src/modules/system/actuator/Actuator.vue b/ui/console-src/modules/system/overview/Overview.vue similarity index 88% rename from ui/console-src/modules/system/actuator/Actuator.vue rename to ui/console-src/modules/system/overview/Overview.vue index 4f0b898720..475213a730 100644 --- a/ui/console-src/modules/system/actuator/Actuator.vue +++ b/ui/console-src/modules/system/overview/Overview.vue @@ -110,25 +110,25 @@ interface CopyItem { const handleCopy = () => { if (!isSupported.value) { - Toast.warning(t("core.actuator.actions.copy.toast_browser_not_supported")); + Toast.warning(t("core.overview.actions.copy.toast_browser_not_supported")); return; } const copyItems: CopyItem[] = [ { - label: t("core.actuator.fields.external_url"), + label: t("core.overview.fields.external_url"), value: globalInfo.value?.externalUrl || "", }, { - label: t("core.actuator.fields.start_time"), + label: t("core.overview.fields.start_time"), value: formatDatetime(startup.value?.timeline.startTime) || "", }, { - label: t("core.actuator.fields.version"), + label: t("core.overview.fields.version"), value: info.value?.build?.version || "", }, { - label: t("core.actuator.fields.build_time"), + label: t("core.overview.fields.build_time"), value: formatDatetime(info.value?.build?.time) || "", }, { @@ -144,28 +144,28 @@ const handleCopy = () => { .trim() || "", }, { - label: t("core.actuator.fields.database"), + label: t("core.overview.fields.database"), value: [info.value?.database.name, info.value?.database.version] .filter(Boolean) .join(" / ") || "", }, { - label: t("core.actuator.fields.os"), + label: t("core.overview.fields.os"), value: [info.value?.os.name, info.value?.os.version] .filter(Boolean) .join(" / ") || "", }, { - label: t("core.actuator.fields.activated_theme"), + label: t("core.overview.fields.activated_theme"), value: themeStore.activatedTheme?.spec.displayName || "", href: themeStore.activatedTheme?.spec.repo || themeStore.activatedTheme?.spec.homepage, }, { - label: t("core.actuator.fields.enabled_plugins"), + label: t("core.overview.fields.enabled_plugins"), children: plugins.value?.map((plugin) => ({ value: plugin.spec.displayName, href: plugin.spec.repo || plugin.spec.homepage, @@ -223,7 +223,7 @@ const handleDownloadLogfile = () => {