Skip to content

Commit

Permalink
fix(Library): sort label translations
Browse files Browse the repository at this point in the history
  • Loading branch information
tymmesyde committed Jan 11, 2024
1 parent c4611cc commit e72225c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/Library/useSelectableInputs.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const mapSelectableInputs = (library, t) => {
options: library.selectable.sorts
.map(({ sort, deepLinks }) => ({
value: deepLinks.library,
label: t.stringWithPrefix(sort, 'SORT_')
label: t.stringWithPrefix(sort.toUpperCase(), 'SORT_')
})),
selected: library.selectable.sorts
.filter(({ selected }) => selected)
Expand Down

0 comments on commit e72225c

Please sign in to comment.