mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-23 22:11:09 +03: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:
commit
82edba3ff3
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user