Skip to content

Commit

Permalink
fix(modules): name as key
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincanac committed Oct 16, 2023
1 parent 1cea523 commit 7ae14b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/modules/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ defineShortcuts({

<UPageGrid v-if="filteredModules?.length">
<UPageCard
v-for="(module, index) in filteredModules"
:key="index"
v-for="module in filteredModules"
:key="module.name"
:to="`/modules/${module.name}`"
:title="module.name"
class="flex flex-col"
Expand Down

0 comments on commit 7ae14b9

Please sign in to comment.