mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
Merge pull request #559 from Stremio/fix/library-sort-select-labels
fix(Library): sort label translations
This commit is contained in:
commit
abaac17c07
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue