Initialize paginate queryset with an empty object

This commit is contained in:
Marliana Lara
2019-03-06 12:19:55 -05:00
parent 67753b790c
commit 31f5d13a69
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ function projectsListController (
) {
const vm = this || {};
const [ProjectModel] = resolvedModels;
let paginateQuerySet = null;
let paginateQuerySet = {};
$scope.canAdd = ProjectModel.options('actions.POST');
vm.strings = strings;