Skip to content

Commit

Permalink
fix asc/desc again. asc = smaller one go first aaaaa
Browse files Browse the repository at this point in the history
  • Loading branch information
PartyWumpus committed Dec 19, 2023
1 parent b76256a commit c048e4c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions backend/locales/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,8 @@
"alph_desc": "Alphabetical (A to Z)",
"date_asce": "Newest First",
"date_desc": "Oldest First",
"downloads_asce": "Most Downloaded First",
"downloads_desc": "Least Downloaded First",
"downloads_asce": "Least Downloaded First",
"downloads_desc": "Most Downloaded First",
"title": "Browse"
},
"store_testing_cta": "Please consider testing new plugins to help the Decky Loader team!",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/store/Store.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ const BrowseTab: FC<{ children: { setPluginCount: Dispatch<SetStateAction<number
{ data: [SortOptions.name, SortDirections.descending], label: t('Store.store_tabs.alph_asce') },
{ data: [SortOptions.date, SortDirections.ascending], label: t('Store.store_tabs.date_asce') },
{ data: [SortOptions.date, SortDirections.descending], label: t('Store.store_tabs.date_desc') },
{ data: [SortOptions.downloads, SortDirections.ascending], label: t('Store.store_tabs.downloads_asce') },
{ data: [SortOptions.downloads, SortDirections.descending], label: t('Store.store_tabs.downloads_desc') },
{ data: [SortOptions.downloads, SortDirections.ascending], label: t('Store.store_tabs.downloads_asce') },
],
[],
);
Expand Down

0 comments on commit c048e4c

Please sign in to comment.