Tab removes focus from TimePicker

This commit is contained in:
Nicholas Wallace 2024-05-24 23:47:38 +00:00
parent 5bbcb9cac3
commit 524ed9b677

View File

@ -174,7 +174,7 @@ export default {
return this.increaseFocused() return this.increaseFocused()
} else if (evt.key === 'ArrowDown') { } else if (evt.key === 'ArrowDown') {
return this.decreaseFocused() return this.decreaseFocused()
} else if (evt.key === 'Enter' || evt.key === 'Escape') { } else if (evt.key === 'Enter' || evt.key === 'Escape' || evt.key === 'Tab') {
return this.removeFocus() return this.removeFocus()
} }