Merge pull request #2097 from kialam/fix/2028-session-timeout

Fix placement of network ui `select2` dropdowns
This commit is contained in:
kialam 2018-06-07 14:47:59 -04:00 committed by GitHub
commit 4391f14da9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,13 +45,15 @@ function NetworkingController (models, $state, $scope, strings) {
$("#networking-search").select2({
width:'400px',
containerCssClass: 'Form-dropDown',
placeholder: 'SEARCH'
placeholder: 'SEARCH',
dropdownParent: $('.Networking-toolbar'),
});
$("#networking-actionsDropdown").select2({
width:'400px',
containerCssClass: 'Form-dropDown',
minimumResultsForSearch: -1,
placeholder: 'ACTIONS'
placeholder: 'ACTIONS',
dropdownParent: $('.Networking-toolbar'),
});
});