Skip to content

Commit

Permalink
fix: order of sort DropdownButtonItems
Browse files Browse the repository at this point in the history
  • Loading branch information
ekraffmiller committed Dec 17, 2024
1 parent ca1cdf0 commit 16f10f6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import { OrderType } from '@/collection/domain/models/CollectionSearchCriteria'
export enum SortOption {
NAME_ASC = 'nameAsc',
NAME_DESC = 'nameDesc',
DATE_ASC = 'dateAsc',
DATE_DESC = 'dateDesc',
DATE_ASC = 'dateAsc',
RELEVANCE = 'relevance'
}

Expand Down

0 comments on commit 16f10f6

Please sign in to comment.