From 7b48670104dcb77fce2341767359cc22286435d8 Mon Sep 17 00:00:00 2001 From: AsocPro Date: Fri, 7 Feb 2025 10:46:12 -0700 Subject: [PATCH] Alerting: Remove leftover legacy alerting types (#100162) --- public/app/plugins/panel/alertlist/types.ts | 25 --------------------- 1 file changed, 25 deletions(-) diff --git a/public/app/plugins/panel/alertlist/types.ts b/public/app/plugins/panel/alertlist/types.ts index fd9e9cf3540..9e497041d45 100644 --- a/public/app/plugins/panel/alertlist/types.ts +++ b/public/app/plugins/panel/alertlist/types.ts @@ -6,11 +6,6 @@ export enum SortOrder { TimeDesc, } -export enum ShowOption { - Current = 'current', - RecentChanges = 'changes', -} - export enum GroupMode { Default = 'default', Custom = 'custom', @@ -21,26 +16,6 @@ export enum ViewMode { Stat = 'stat', } -export interface AlertListOptions { - showOptions: ShowOption; - maxItems: number; - sortOrder: SortOrder; - dashboardAlerts: boolean; - alertName: string; - dashboardTitle: string; - tags: string[]; - stateFilter: { - ok: boolean; - paused: boolean; - no_data: boolean; - execution_error: boolean; - alerting: boolean; - pending: boolean; - }; - folderId: number; - showInactiveAlerts: boolean; -} - export interface StateFilter { firing: boolean; pending: boolean;