]> git.immae.eu Git - github/bastienwirtz/homer.git/commitdiff
Merge branch 'main' into search-for-subtitle 166/head
authorJochen Mehlhorn <jochen.mehlhorn@gmail.com>
Wed, 2 Dec 2020 19:35:06 +0000 (20:35 +0100)
committerJochen Mehlhorn <jochen.mehlhorn@gmail.com>
Wed, 2 Dec 2020 19:35:06 +0000 (20:35 +0100)
src/App.vue

index 47e145cc97d5d62a078586c5d0a5a6b820852ae4..dc473cacf406671d4f3f38c15179cc6337163746 100644 (file)
@@ -65,8 +65,8 @@
                 {{ group.name }}
               </h2>
               <Service
-                v-for="item in group.items"
-                :key="item.name"
+                v-for="(item, index) in group.items"
+                :key="index"
                 v-bind:item="item"
                 :class="['column', `is-${12 / config.columns}`]"
               />
@@ -88,9 +88,9 @@
                 {{ group.name }}
               </h2>
               <Service
-                v-for="item in group.items"
+                v-for="(item, index) in group.items"
+                :key="index"
                 v-bind:item="item"
-                :key="item.url"
               />
             </div>
           </div>