From 18cef8858c45be16dfa00199a6f280f551b5c5df Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Timoth=C3=A9e=20Poussard?= <tpoussard@neogeo.fr>
Date: Fri, 8 Oct 2021 15:49:57 +0200
Subject: [PATCH] change key from title to name with index

---
 src/views/feature_type/Feature_type_detail.vue | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/views/feature_type/Feature_type_detail.vue b/src/views/feature_type/Feature_type_detail.vue
index 4bd7c5dc..37a732a0 100644
--- a/src/views/feature_type/Feature_type_detail.vue
+++ b/src/views/feature_type/Feature_type_detail.vue
@@ -35,8 +35,8 @@
           <h3 class="ui header">Champs</h3>
           <div class="ui divided list">
             <div
-              v-for="field in structure.customfield_set"
-              :key="field.label"
+              v-for="(field, index) in structure.customfield_set"
+              :key="field.name + index"
               class="item"
             >
               <div class="right floated content">
-- 
GitLab