Skip to content

Commit

Permalink
#751: hotfix, increase mappings page entry limit to 10000 for now
Browse files Browse the repository at this point in the history
  • Loading branch information
riipah committed Jan 31, 2021
1 parent bc2ac10 commit 800a9e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ import ui from '../../Shared/MessagesTyped';

private loadMappings = async () => {

const result = await this.tagRepo.getMappings({ start: 0, maxEntries: 1000, getTotalCount: false });
const result = await this.tagRepo.getMappings({ start: 0, maxEntries: 10000, getTotalCount: false });
this.mappings(_.map(result.items, t => new EditTagMappingViewModel(t)));
this.paging.totalItems(this.filteredMappings().length);
this.paging.goToFirstPage();
Expand Down

0 comments on commit 800a9e7

Please sign in to comment.