From f05ed39184dc370881b18e2e76b56d471e5ae8dd Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sat, 1 Aug 2026 12:38:32 +0100 Subject: [PATCH] Enhance Printers component with session and URL filter/sort persistence - Added props to the Printers component to enable saving and using filters and sorting in both session and URL, improving user experience and state management consistency. --- src/components/Dashboard/Production/Printers.jsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/components/Dashboard/Production/Printers.jsx b/src/components/Dashboard/Production/Printers.jsx index de51288..9d3d1e5 100644 --- a/src/components/Dashboard/Production/Printers.jsx +++ b/src/components/Dashboard/Production/Printers.jsx @@ -87,6 +87,14 @@ const Printers = () => { cards={viewMode === 'cards'} visibleColumns={columnVisibility} expandHeight={true} + saveFilterInSession={true} + saveFilterInUrl={true} + useFilterInSession={true} + useFilterInUrl={true} + saveSortInSession={true} + saveSortInUrl={true} + useSortInSession={true} + useSortInUrl={true} />