Add sorting

This commit is contained in:
Blossomi Shymae
2024-05-02 09:46:48 -05:00
parent 4cec226e1d
commit 2db643b49f
4 changed files with 8 additions and 5 deletions

View File

@@ -37,5 +37,6 @@
import useClient from '../../composables/useClient';
const { client } = useClient();
const runes = await client.perks.listAsync({locale: "default", version: "latest"});
const runes = (await client.perks.listAsync({locale: "default", version: "latest"}))
.sort((a, b) => a.id - b.id);
</script>