diff --git a/src/routes/_components/shortcut/ScrollListShortcuts.html b/src/routes/_components/shortcut/ScrollListShortcuts.html index 393e3e9c..e61fd6f6 100644 --- a/src/routes/_components/shortcut/ScrollListShortcuts.html +++ b/src/routes/_components/shortcut/ScrollListShortcuts.html @@ -26,7 +26,7 @@ const { target, key } = event const isRadio = target && target.tagName === 'INPUT' && - (target.type || '').toLowerCase() === 'radio' + target.type === 'radio' const isArrow = key === 'ArrowUp' || key === 'ArrowDown' return isRadio && isArrow }