Merge pull request #819 from ansible/jakemcdermott-patch-1

fix arg name clash in hosts list controller
This commit is contained in:
Shane McDonald 2017-12-13 13:02:47 -05:00 committed by GitHub
commit 47e422ba7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@
function HostsList($scope, HostsList, $rootScope, GetBasePath,
rbacUiControlService, Dataset, $state, $filter, Prompt, Wait,
HostsService, SetStatus, canAdd, $transitions, InventoryHostsStrings, HostsList) {
HostsService, SetStatus, canAdd, $transitions, InventoryHostsStrings) {
let list = HostsList;
@ -104,5 +104,5 @@ function HostsList($scope, HostsList, $rootScope, GetBasePath,
export default ['$scope', 'HostsList', '$rootScope', 'GetBasePath',
'rbacUiControlService', 'Dataset', '$state', '$filter', 'Prompt', 'Wait',
'HostsService', 'SetStatus', 'canAdd', '$transitions', 'InventoryHostsStrings', HostsList
'HostsService', 'SetStatus', 'canAdd', '$transitions', 'InventoryHostsStrings'
];