Skip to content

Commit

Permalink
Merge pull request DSpace#2840 from jeffmorin/main
Browse files Browse the repository at this point in the history
Removed 250 and 1000 items/page options and set 10 as default value
  • Loading branch information
tdonohue authored Feb 29, 2024
2 parents c195175 + bb20b8d commit 25955ae
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export class FilteredItemsComponent {
collections: this.formBuilder.control([''], []),
presetQuery: this.formBuilder.control('new', []),
queryPredicates: this.formBuilder.array(formQueryPredicates),
pageLimit: this.formBuilder.control('100', []),
pageLimit: this.formBuilder.control('10', []),
filters: FiltersComponent.formGroup(this.formBuilder),
additionalFields: this.formBuilder.control([], [])
});
Expand Down Expand Up @@ -200,9 +200,7 @@ export class FilteredItemsComponent {
OptionVO.item('10', '10'),
OptionVO.item('25', '25'),
OptionVO.item('50', '50'),
OptionVO.item('100', '100'),
OptionVO.item('250', '250'),
OptionVO.item('1000', '1000')
OptionVO.item('100', '100')
];
}

Expand Down

0 comments on commit 25955ae

Please sign in to comment.