diff --git a/src/views/alarm/Content.vue b/src/views/alarm/Content.vue index 60a730ab..489a3150 100644 --- a/src/views/alarm/Content.vue +++ b/src/views/alarm/Content.vue @@ -120,17 +120,14 @@ limitations under the License. --> import { useI18n } from "vue-i18n"; import type { Alarm, Event } from "@/types/alarm"; import { useAlarmStore } from "@/store/modules/alarm"; - import { useAppStoreWithOut } from "@/store/modules/app"; import { EventsDetailHeaders, AlarmDetailCol, EventsDetailKeys } from "./data"; import { dateFormat } from "@/utils/dateFormat"; import { useSnapshot } from "@/hooks/useSnapshot"; import Snapshot from "./components/Snapshot.vue"; - import Line from "@/views/dashboard/graphs/Line.vue"; import type { MetricsResults } from "@/types/dashboard"; const { t } = useI18n(); const alarmStore = useAlarmStore(); - const appStore = useAppStoreWithOut(); const isShowDetails = ref(false); const showEventDetails = ref(false); const currentDetail = ref({});