diff --git a/girder_annotation/girder_large_image_annotation/web_client/collections/AnnotationCollection.js b/girder_annotation/girder_large_image_annotation/web_client/collections/AnnotationCollection.js index 28f1bd3f0..b57247cea 100644 --- a/girder_annotation/girder_large_image_annotation/web_client/collections/AnnotationCollection.js +++ b/girder_annotation/girder_large_image_annotation/web_client/collections/AnnotationCollection.js @@ -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 });