Merge pull request #2130 from kialam/fix/2106-job-view-pagination

Broadcast `updateDataset` for job template controller
This commit is contained in:
kialam 2018-06-12 15:06:06 -04:00 committed by GitHub
commit 404fdb474c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,6 +56,7 @@ export default ['$scope', '$stateParams', '$state', '$filter', 'GetBasePath', 'Q
}
$scope.dataset = res.data;
$scope.collection = res.data.results;
$scope.$emit('updateDataset', res.data);
});
};