You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When navigating the page via keyboard only navigation, once the keyboard focus is placed on the "edit title" inline form element, it cannot be moved away unless the form is opened, and then the cancel button is activated.
Steps To Reproduce
Go to a message display page /messages/SOME_MESSAGE_ID on a browser that supports keyboard navigation
Tab through until the message title is highlighted
Attempt to tab away (either by pressing tab more or shift+tab to go back in the tab order)
See that the focus never leaves the message title
Expected behavior
A person using keyboard navigation should be able to tab through all the elements without getting stuck.
The text was updated successfully, but these errors were encountered:
Looks like this is due to an event handler in the javascript that handles editing the message title. It was (seemingly) erroneously not letting key events fall through to their default behavior.
Describe the bug
When navigating the page via keyboard only navigation, once the keyboard focus is placed on the "edit title" inline form element, it cannot be moved away unless the form is opened, and then the
cancel
button is activated.Steps To Reproduce
/messages/SOME_MESSAGE_ID
on a browser that supports keyboard navigationExpected behavior
A person using keyboard navigation should be able to tab through all the elements without getting stuck.
The text was updated successfully, but these errors were encountered: