Skip to content

Commit

Permalink
Merge pull request #367 from girder/annotation-page-limit
Browse files Browse the repository at this point in the history
Increase the annotation page limit.
  • Loading branch information
manthey authored Aug 29, 2019
2 parents b82cda6 + 3e40889 commit 0f6e4fa
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ import AnnotationModel from '../models/AnnotationModel';
export default Collection.extend({
resourceName: 'annotation',
model: AnnotationModel,
pageLimit: 100,
// this is a large number so that we probably never need to page
// annotations.
pageLimit: 10000,
sortField: 'created',
sortDir: SORT_DESC
});

0 comments on commit 0f6e4fa

Please sign in to comment.