From 16f10f64c8dfd39a1f81e99880936ae90df5c00f Mon Sep 17 00:00:00 2001 From: Ellen Kraffmiller Date: Tue, 17 Dec 2024 08:07:01 -0500 Subject: [PATCH] fix: order of sort DropdownButtonItems --- .../collection-items-panel/items-list/ItemsSortBy.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sections/collection/collection-items-panel/items-list/ItemsSortBy.tsx b/src/sections/collection/collection-items-panel/items-list/ItemsSortBy.tsx index 208d8c169..4792ba3aa 100644 --- a/src/sections/collection/collection-items-panel/items-list/ItemsSortBy.tsx +++ b/src/sections/collection/collection-items-panel/items-list/ItemsSortBy.tsx @@ -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' }