From a97ad5e6e4726e0a9da553319adff4e482ead73f Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Mon, 14 Jun 2021 03:53:02 -0400 Subject: [PATCH] AlertList: make sure we sort the alert list when displayed in "recent state changes" mode. (#35544) (#35545) (cherry picked from commit 5ac2a7cca63baddb1d32730f8fe850da1a1bcdba) Co-authored-by: Marcus Andersson --- 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);