mirror of
https://github.com/ansible/awx.git
synced 2026-01-17 12:41:19 -03:30
Fixed host/groups pagination issue
This commit is contained in:
parent
5594bae766
commit
93e6d06bca
@ -41,7 +41,8 @@ export default ['$scope', '$stateParams', '$state', '$filter', 'GetBasePath', 'Q
|
||||
queryset = _.merge(origQuerySet, { page: page });
|
||||
|
||||
} else {
|
||||
queryset = _.merge($stateParams[`${$scope.iterator}_search`], { page: page });
|
||||
let origStateParams = _.cloneDeep($stateParams[`${$scope.iterator}_search`]);
|
||||
queryset = _.merge(origStateParams, { page: page });
|
||||
}
|
||||
if (!$scope.querySet) {
|
||||
$state.go('.', {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user