UPDATE: New data 4.1.5
All checks were successful
Gitea Auto Deploy / Deploy-Container (push) Successful in 1m4s

This commit is contained in:
2026-03-17 10:59:53 +07:00
parent 319ad79233
commit 80441ce96b
7 changed files with 9 additions and 4 deletions

View File

@@ -47,7 +47,7 @@ export default function AvatarBar({ onClose }: { onClose?: () => void }) {
list.sort((a, b) => {
const r = calcRarity(b.Rarity) - calcRarity(a.Rarity)
if (r !== 0) return r
return a.ID - b.ID
return b.ID - a.ID
})
return list

View File

@@ -47,7 +47,7 @@ export default function LightconeBar() {
list.sort((a, b) => {
const r = calcRarity(b.Rarity) - calcRarity(a.Rarity)
if (r !== 0) return r
return a.ID - b.ID
return b.ID - a.ID
})
return list