set minimal count of accepted_number for user rank

This commit is contained in:
2024-06-12 15:10:11 +08:00
parent e379c0bb6d
commit 7d9e8d228f
3 changed files with 9 additions and 4 deletions

View File

@@ -63,7 +63,7 @@ onMounted(async () => {
async function listRanks() {
const offset = (query.page - 1) * query.limit
const res = await getRank(offset, query.limit, query.username)
const res = await getRank(offset, query.limit, 0, query.username)
data.value = res.data.results
total.value = res.data.total
}