From b1c8142467890255d45cfb361aec3755ff3af35f Mon Sep 17 00:00:00 2001 From: Amardeepsingh Siglani Date: Tue, 13 Dec 2022 23:31:22 -0800 Subject: [PATCH] sort alerts in descending order of timestamp by default Signed-off-by: Amardeepsingh Siglani --- public/pages/Alerts/containers/Alerts/Alerts.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/pages/Alerts/containers/Alerts/Alerts.tsx b/public/pages/Alerts/containers/Alerts/Alerts.tsx index e1f1c3242..19228f540 100644 --- a/public/pages/Alerts/containers/Alerts/Alerts.tsx +++ b/public/pages/Alerts/containers/Alerts/Alerts.tsx @@ -428,7 +428,7 @@ class Alerts extends Component { const sorting: any = { sort: { field: 'start_time', - direction: 'asc', + direction: 'dsc', }, };