From 7b926ec4096f8ef660af854693d46e5362e28438 Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sat, 1 Aug 2026 14:18:05 +0100 Subject: [PATCH] Update keyboard shortcut hints in ObjectTableNavigationButtons for clarity MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Changed the keyboard shortcut hints from 'ALT LEFT' and 'ALT RIGHT' to 'ALT ←' and 'ALT →' respectively, enhancing visual clarity for users. - This update aligns with the overall goal of improving user experience and accessibility in navigation. --- .../Dashboard/common/ObjectTableNavigationButtons.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Dashboard/common/ObjectTableNavigationButtons.jsx b/src/components/Dashboard/common/ObjectTableNavigationButtons.jsx index e203d60..d0171fa 100644 --- a/src/components/Dashboard/common/ObjectTableNavigationButtons.jsx +++ b/src/components/Dashboard/common/ObjectTableNavigationButtons.jsx @@ -98,7 +98,7 @@ const ObjectTableNavigationButtons = ({ { if (!disabled && !loading && neighbors.previous?._id) { handlePrevious() @@ -113,7 +113,7 @@ const ObjectTableNavigationButtons = ({ { if (!disabled && !loading && neighbors.next?._id) { handleNext()