fix arg name clash in hosts list controller

This commit is contained in:
Jake McDermott
2017-12-13 13:01:11 -05:00
committed by GitHub
parent 6c1c850c5f
commit 4b86815275

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'
];