Skip to content

Commit

Permalink
fix(ui): english always before spanish related links
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioRibera committed Jun 26, 2024
1 parent 03dcc9f commit 64a524f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/[...slug].vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
</h4>
<a
class="gap-x-2 mb-1"
v-for="(link, i) in content.data.externalLinks"
v-for="(link, i) in content.data.externalLinks.sort((a, b) => a.english - b.english)"
:key="i"
:href="link.link"
>
Expand Down

0 comments on commit 64a524f

Please sign in to comment.