Fix selected search item appearing as multi-select item in search input

no issue
- adds an observer to the component's `selection` property that always clears it if it's assigned a value
This commit is contained in:
Kevin Ansfield 2015-09-02 19:34:54 +01:00
parent 16d7790a19
commit 290988eb33

View File

@ -78,6 +78,12 @@ export default Ember.Component.extend({
});
},
_keepSelectionClear: Ember.observer('selection', function () {
if (this.get('selection') !== null) {
this.set('selection', null);
}
}),
_setKeymasterScope: function () {
key.setScope('search-input');
},
@ -105,7 +111,6 @@ export default Ember.Component.extend({
transition = self.get('_routing.router').transitionTo('team.user', selected.id);
}
self.set('selection', '');
transition.then(function () {
if (self.get('_selectize').$control_input.is(':focus')) {
self._setKeymasterScope();