From 5ac2a7cca63baddb1d32730f8fe850da1a1bcdba Mon Sep 17 00:00:00 2001 From: Marcus Andersson Date: Fri, 11 Jun 2021 09:18:35 +0200 Subject: [PATCH] AlertList: make sure we sort the alert list when displayed in "recent state changes" mode. (#35544) --- public/app/plugins/panel/alertlist/AlertList.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/public/app/plugins/panel/alertlist/AlertList.tsx b/public/app/plugins/panel/alertlist/AlertList.tsx index 7d514337cf8..43f0750127b 100644 --- a/public/app/plugins/panel/alertlist/AlertList.tsx +++ b/public/app/plugins/panel/alertlist/AlertList.tsx @@ -128,6 +128,7 @@ export function AlertList(props: PanelProps) { props.options.stateFilter.paused, props.options.stateFilter.pending, props.options.dashboardAlerts, + props.options.sortOrder, ]); const styles = useStyles(getStyles);