-
Notifications
You must be signed in to change notification settings - Fork 438
New issue
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
Fix suggestions when using select all #1422
Conversation
Tab into the input, select all and start to write something, no suggestion shows up
break; | ||
|
||
// remove tag if has focus | ||
case 'Backspace': { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moved here because it needs to continue into default (to call on Input
if relevant)
Hi, I've carefully investigated this bug and had made a fix which is very different than yours. |
No problem, you're great thanks! |
@Massi-X - How do you keep your Tagify package updated (NPM) if you are manually patching it? |
It's embedded, I'm not using NPM! |
OK but still, how to you manage to merge the my updates with your changes... it seems like a very delicate work which can get frustrating |
Yep indeed I'm waiting for all the fixes to be implemented 😅 |
Hi @yairEO this should be my last PR, take your time to review and/or improve them and ask me if you need any clarifications!
To trigger this bug (mode is select with whitelist):
I think this happens because the focus is not on the input but rather on the
tagText
element, fixed the behavior by adding another case toonWindowKeyDown
handler that calls theonInput
handler.1.mov