Ver Fonte

chore(webapp): fix eslint error

Rotzbua há 1 ano atrás
pai
commit
8ce07b2f9d
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      www/webapp/src/components/Field/RecordItem.vue

+ 1 - 1
www/webapp/src/components/Field/RecordItem.vue

@@ -86,7 +86,7 @@ export default {
   },
   beforeMount() {
     // Initialize per-field value storage
-    this.fields.forEach((field, i) => {
+    this.fields.forEach((field, /*i*/) => {
       this.$set(field, 'value', '');
       this.$set(field, 'hint', '');
     });