Skip to content

Commit

Permalink
Fix urgentie labels (#2781)
Browse files Browse the repository at this point in the history
  • Loading branch information
vdegraaf authored Dec 11, 2023
1 parent 728307d commit fd5a703
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ const List: FunctionComponent<ListProps> = ({
<ThParent />
<ThSort
StyledComponent={ThPriority}
sortOption={SortOptions.PRIORITY_ASC}
sortOption={SortOptions.PRIORITY_DESC}
headerText={SortOptionLabels.URGENTIE}
ordering={ordering}
changeOrder={changeOrder}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ export enum SortOptions {
DISTRICT_DESC = '-area_name',
CREATED_AT_ASC = '-created_at',
CREATED_AT_DESC = 'created_at',
PRIORITY_ASC = 'priority',
PRIORITY_DESC = '-priority',
PRIORITY_ASC = '-priority',
PRIORITY_DESC = 'priority',
STATUS_ASC = 'status',
STATUS_DESC = '-status',
SUBCATEGORY_ASC = 'sub_category',
Expand Down

0 comments on commit fd5a703

Please sign in to comment.