Skip to content

Commit

Permalink
fixed missing key
Browse files Browse the repository at this point in the history
  • Loading branch information
Severino committed Oct 17, 2023
1 parent c1820df commit 797b5fb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion resources/js/components/OlMap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,10 @@
<div v-if="overlayInfo.showCoordinates">
<table class="table table-striped table-borderless table-sm mb-0">
<tbody>
<tr v-for="c in coordinateList">
<tr
v-for="(c, index) in coordinateList"
:key="index"
>
<td class="text-start">
<input
v-if="overlayInfo.pointEditEnabled"
Expand Down

0 comments on commit 797b5fb

Please sign in to comment.