mirror of
https://github.com/ansible/awx.git
synced 2026-01-21 14:38:00 -03:30
Fixed bug where search dropdown was not being hidden when one of the dropdown items was selected.
This commit is contained in:
parent
67cfc35c79
commit
a52d686306
@ -19,9 +19,10 @@ export default ['$scope', 'Refresh', 'tagSearchService',
|
||||
};
|
||||
|
||||
// sets the search type dropdown and hides it
|
||||
$scope.setSearchType = function(type) {
|
||||
$scope.setSearchType = function($event, type) {
|
||||
$scope.currentSearchType = type;
|
||||
$scope.showTypeDropdown = false;
|
||||
$event.stopPropagation();
|
||||
};
|
||||
|
||||
// if the current search type uses a list instead
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user