Skip to content

Commit

Permalink
changed text in sort by dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
dzonidoo committed Nov 16, 2023
1 parent c671112 commit 94f8aa0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/search/components/SearchResultsBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ class SearchResultsBarComponent extends React.Component<any, any> {
this.topicNotNull = new URLSearchParams(window.location.search).get('topic') != null;
this.sortValues = [
{
value: gettext('Date ↑'),
value: gettext('Newest first'),
sortFunction: () => this.setSortQuery('versioncreated:desc'),
},
{
value: gettext('Date ↓'),
value: gettext('Oldest first'),
sortFunction: () => this.setSortQuery('versioncreated:asc'),
},
{
Expand Down

0 comments on commit 94f8aa0

Please sign in to comment.