mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
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:
parent
5e455dfcfb
commit
8147a7e062
1 changed files with 6 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue