feat: less bad launches
This commit is contained in:
@ -11,7 +11,12 @@ onMounted(() => {
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div v-for="p in pkgs.allRemote" class="flex flex-row">
|
||||
<div
|
||||
v-for="p in pkgs.allRemote.sort((p1, p2) =>
|
||||
p1.name.localeCompare(p2.name)
|
||||
)"
|
||||
class="flex flex-row"
|
||||
>
|
||||
<ModStoreEntry :pkg="p" />
|
||||
</div>
|
||||
</template>
|
||||
|
Reference in New Issue
Block a user