feat: support search sort by ascending
Some checks are pending
Check / check (push) Waiting to run

This commit is contained in:
ThaUnknown 2025-06-29 00:13:10 +02:00
parent 5e867d8558
commit 45018f9747
No known key found for this signature in database
2 changed files with 25 additions and 1 deletions

View file

@ -1,6 +1,6 @@
{
"name": "ui",
"version": "6.4.10",
"version": "6.4.11",
"license": "BUSL-1.1",
"private": true,
"packageManager": "pnpm@9.14.4",

View file

@ -161,6 +161,30 @@ export const sort = [
{
value: 'UPDATED_AT_DESC',
label: 'Updated Date'
},
{
value: 'TITLE_ROMAJI',
label: 'Name Asc'
},
{
value: 'START_DATE',
label: 'Release Date Asc'
},
{
value: 'SCORE',
label: 'Score Asc'
},
{
value: 'POPULARITY',
label: 'Popularity Asc'
},
{
value: 'TRENDING',
label: 'Trending Asc'
},
{
value: 'UPDATED_AT',
label: 'Updated Date Asc'
}
] as const