fix: fix kaios left-right navigation on inputs (#1606)
This commit is contained in:
parent
cf2a6022dd
commit
e569c757d1
|
@ -48,7 +48,7 @@ export function leftRightFocusObservers (store) {
|
||||||
function shouldIgnoreEvent (activeElement, key) {
|
function shouldIgnoreEvent (activeElement, key) {
|
||||||
const isTextarea = activeElement.tagName === 'TEXTAREA'
|
const isTextarea = activeElement.tagName === 'TEXTAREA'
|
||||||
const isTextInput = activeElement.tagName === 'INPUT' &&
|
const isTextInput = activeElement.tagName === 'INPUT' &&
|
||||||
['input', 'search'].includes(activeElement.getAttribute('type'))
|
['text', 'search', 'number', 'email', 'url'].includes(activeElement.getAttribute('type').toLowerCase())
|
||||||
|
|
||||||
if (!isTextarea && !isTextInput) {
|
if (!isTextarea && !isTextInput) {
|
||||||
return false
|
return false
|
||||||
|
|
Loading…
Reference in a new issue