-
Notifications
You must be signed in to change notification settings - Fork 38
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
Backspace is deleting everything #29
Comments
Basically doing some thing like:
returns the expected behavior. |
Maybe this should be the default behaviour. |
This appears to be working for me. I am pretty sure this feature only works with Strings though. |
Just tested with a ember-data model and it is working. |
After some experimentation I can see this issue now. I have included it as part of a bigger cleanup issue. |
Does this issue still valid? I can't reproduce it! If anyone can give a hint or twiddle on how to reproduce it. I will be happy to fix it. |
@mnifakram yes, this should still be an unresolved bug. |
Happening for me in |
Happening in v3.1.0. |
There's an issue with {{aupac-typeahead}} where deleting a single character in the input removes the entire input value. This is very annoying for correcting typos.
This is happening when suggestions are objects (which we fetch from an api).
Basically it looks like this gets called when I press backspace
this.get('_typeahead').typeahead('val', '');
(line 79 in addon/components/aupac-typeahead.js)
The text was updated successfully, but these errors were encountered: