2
1
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2023-12-13 21:00:40 +01:00

Merge pull request #5792 from kevinansfield/fix-search-listing-selection

Fix selected search item appearing as multi-select item in search input
This commit is contained in:
Hannah Wolfe 2015-09-02 20:57:03 +01:00
commit 5b4a8c66be

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();