Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
lukarenko committed Nov 6, 2024
1 parent ca1d726 commit 824f412
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/maps/leafletMapMoorages.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
>
<div>
<ol>
<li v-for="(moorage, index) in mooragesList" :key="index">
{{ index + 1 }}.
<li v-for="(moorage, mIdx) in mooragesList" :key="mIdx">
{{ mIdx + 1 }}.
<a class="va-link" @click="navigateMoorage(moorage.geometry.coordinates)">{{
moorage.properties.name
}}</a>
Expand Down

0 comments on commit 824f412

Please sign in to comment.