Skip to content

Commit

Permalink
fix: use title as key
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroAkbal committed Oct 17, 2021
1 parent 8b0a1ae commit 41c4de2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/layout/navigation/sidenav/SideNav.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<nav class="flex flex-col h-full p-3 bg-darkGray-700">
<!-- Navbar Links -->
<ul class="flex-auto space-y-2 text-center sm:text-left">
<li v-for="link in sideNavLinks" :key="link.url">
<li v-for="link in sideNavLinks" :key="link.title">
<NuxtLink
class="relative block transition-transform duration-300 transform link hover:translate-x-1"
:to="link.url"
Expand Down

0 comments on commit 41c4de2

Please sign in to comment.