We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The Space key is currently mapped to trigger onEnterKey in the AutoComplete component, preventing users from typing spaces in the input field.
onEnterKey
This was introduced in PR: #7082
The text was updated successfully, but these errors were encountered:
@J-Michalek Could you take a look please? It doesn't seem like intended behavior.
Perhaps something like
case 'Space': if (event.shiftKey) { this.onEnterKey(event); } break;
or
onSpaceKey(event) { if (this.focusedOptionIndex !== -1) { this.onEnterKey(event); } },
Sorry, something went wrong.
@MildConcussion Hello, thanks for looking into this, definitely not intended.
I will try to have a look next week.
Perhaps you could take a look into this and submit a PR if you feel like it.
No branches or pull requests
Bug Description
The Space key is currently mapped to trigger
onEnterKey
in the AutoComplete component, preventing users from typing spaces in the input field.Current Behavior
Expected Behavior
Related Commit
This was introduced in PR: #7082
Steps to Reproduce
Environment
The text was updated successfully, but these errors were encountered: