From c2b8378926c59de75d18ada04d4dcbf585420b19 Mon Sep 17 00:00:00 2001 From: LIghtJUNction Date: Sat, 4 Apr 2026 19:12:57 +0800 Subject: [PATCH] fix(dashboard): remove unused variables in VerticalHeader.vue --- dashboard/src/layouts/full/vertical-header/VerticalHeader.vue | 3 --- 1 file changed, 3 deletions(-) diff --git a/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue b/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue index 4c51f7fbc..5fde6c01d 100644 --- a/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue +++ b/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue @@ -16,7 +16,6 @@ import StyledMenu from "@/components/shared/StyledMenu.vue"; import { useLanguageSwitcher } from "@/i18n/composables"; import type { Locale } from "@/i18n/types"; import AboutPage from "@/views/AboutPage.vue"; -import { getDesktopRuntimeInfo } from "@/utils/desktopRuntime"; enableKatex(); enableMermaid(); @@ -53,14 +52,12 @@ const password = ref(""); const newPassword = ref(""); const confirmPassword = ref(""); const newUsername = ref(""); -const status = ref(""); const updateStatus = ref(""); const releaseMessage = ref(""); const hasNewVersion = ref(false); const botCurrVersion = ref(""); const dashboardHasNewVersion = ref(false); const dashboardCurrentVersion = ref(""); -const version = ref(""); const releases = ref([]); const updatingDashboardLoading = ref(false); const installLoading = ref(false);