FIX: prevents selected value from hiding one item of the list
This commit is contained in:
parent
96b4617094
commit
ba2f01c0bd
|
@ -87,6 +87,10 @@ export default ComboBox.extend(Tags, {
|
|||
this.didPressBackspace(event);
|
||||
},
|
||||
|
||||
// we are relying on selectedTags and not on value
|
||||
// to define the current selection
|
||||
mutateValue() {},
|
||||
|
||||
didPressBackspace() {
|
||||
if (!this.get("isExpanded")) {
|
||||
this.expand();
|
||||
|
|
Loading…
Reference in New Issue