Skip to content

Commit

Permalink
Recent submissions are loaded on the collection page. (#567)
Browse files Browse the repository at this point in the history
  • Loading branch information
milanmajchrak authored Mar 25, 2024
1 parent 086ba80 commit 8cb0431
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1011,7 +1011,9 @@ public void discoverSearchTest() throws Exception {
SortOptionMatcher.sortOptionMatcher(
"dc.date.issued", DiscoverySortFieldConfiguration.SORT_ORDER.asc.name()),
SortOptionMatcher.sortOptionMatcher(
"dc.date.issued", DiscoverySortFieldConfiguration.SORT_ORDER.desc.name())
"dc.date.issued", DiscoverySortFieldConfiguration.SORT_ORDER.desc.name()),
SortOptionMatcher.sortOptionMatcher(
"dc.date.accessioned", DiscoverySortFieldConfiguration.SORT_ORDER.desc.name())
)));
}

Expand Down
1 change: 1 addition & 0 deletions dspace/config/spring/api/discovery.xml
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@
<ref bean="sortTitleDesc" />
<ref bean="sortDateIssuedAsc" />
<ref bean="sortDateIssuedDesc" />
<ref bean="sortDateAccessioned"/>
</list>
</property>
</bean>
Expand Down

0 comments on commit 8cb0431

Please sign in to comment.