From 6ea5f2848ad7824cf5143c3bb0529845a1bbade8 Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sat, 1 Aug 2026 14:45:49 +0100 Subject: [PATCH] Add filter and sort persistence to Users component - Introduced new props to the Users component to enable saving and using filters and sorting in both session and URL. - This enhancement improves user experience by maintaining filter and sort states across sessions, aligning with recent updates across other dashboard components. --- src/components/Dashboard/Management/Users.jsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/components/Dashboard/Management/Users.jsx b/src/components/Dashboard/Management/Users.jsx index 231fd26..6b7f775 100644 --- a/src/components/Dashboard/Management/Users.jsx +++ b/src/components/Dashboard/Management/Users.jsx @@ -67,6 +67,15 @@ const Users = () => { visibleColumns={columnVisibility} cards={viewMode === 'cards'} showFilterSidebar={showFilterSidebar} + expandHeight={true} + saveFilterInSession={true} + saveFilterInUrl={true} + useFilterInSession={true} + useFilterInUrl={true} + saveSortInSession={true} + saveSortInUrl={true} + useSortInSession={true} + useSortInUrl={true} /> )