From 66e98fc96a28fd888c3ce95020db922603b8eb98 Mon Sep 17 00:00:00 2001 From: Kuba <78603704+jakub-tldr@users.noreply.github.com> Date: Wed, 11 Mar 2026 16:43:12 +0100 Subject: [PATCH 1/2] change icon to text --- web/src/pages/LocationsPage/components/LocationsTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/pages/LocationsPage/components/LocationsTable.tsx b/web/src/pages/LocationsPage/components/LocationsTable.tsx index db03cd6b52..cdb64e4a91 100644 --- a/web/src/pages/LocationsPage/components/LocationsTable.tsx +++ b/web/src/pages/LocationsPage/components/LocationsTable.tsx @@ -166,7 +166,7 @@ export const LocationsTable = () => { case 'disabled': return ( - + Regular ); case 'prelogon': From b58ccf88d35069a904fc1183df8edc8c09b18cda Mon Sep 17 00:00:00 2001 From: Kuba <78603704+jakub-tldr@users.noreply.github.com> Date: Wed, 11 Mar 2026 16:46:25 +0100 Subject: [PATCH 2/2] add sorting --- web/src/pages/LocationsPage/components/LocationsTable.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/src/pages/LocationsPage/components/LocationsTable.tsx b/web/src/pages/LocationsPage/components/LocationsTable.tsx index cdb64e4a91..a003d69e73 100644 --- a/web/src/pages/LocationsPage/components/LocationsTable.tsx +++ b/web/src/pages/LocationsPage/components/LocationsTable.tsx @@ -161,6 +161,8 @@ export const LocationsTable = () => { columnHelper.accessor('service_location_mode', { header: 'Service location', minSize: 100, + enableSorting: true, + sortingFn: 'text', cell: (info) => { switch (info.getValue()) { case 'disabled':