From fa83f8124a9aaa6ccab1c5dc6caa2c5695cfca4e Mon Sep 17 00:00:00 2001 From: Martin Hamilton Date: Mon, 4 May 2026 15:54:36 +0100 Subject: [PATCH] Correcting per PR comments --- src/pages/notifications.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/notifications.jsx b/src/pages/notifications.jsx index 523ca362..6034d588 100644 --- a/src/pages/notifications.jsx +++ b/src/pages/notifications.jsx @@ -658,9 +658,9 @@ function Notifications({ columnMode }) { { useKey: true, ignoreEventWhen: (e) => { - return ( - e.metaKey || e.ctrlKey || e.altKey || e.shiftKey || e.key !== '.' - ); + // Allow '.' even with Shift (some keyboard layouts require Shift for '.') + if (e.key === '.') return false; + return e.metaKey || e.ctrlKey || e.altKey || e.shiftKey; }, }, ); -- 2.51.2