From eae352bf9e2475ad8bb094a4228e19e37ab95330 Mon Sep 17 00:00:00 2001 From: Sam Saravillo <7529759+samsaravillo@users.noreply.github.com> Date: Tue, 8 Jul 2025 16:35:27 -0700 Subject: [PATCH] bugfix/AB29494 Fix Reset Default View submission date order Fix Reset to Default View to sort column submission date in descending order --- .../src/Unity.GrantManager.Web/Pages/GrantApplications/Index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Index.js b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Index.js index d4a123a92..7f40bfe57 100644 --- a/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Index.js +++ b/applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/GrantApplications/Index.js @@ -95,7 +95,7 @@ }) dt.colReorder.order(orderedIndexes); - dt.order([4, 'asc']).search('').draw(); + dt.order([4, 'desc']).search('').draw(); // Close the dropdown dt.buttons('.grp-savedStates')