Browse Source

chore(webapp): fix eslint error

Rotzbua 1 year ago
parent
commit
8ce07b2f9d
1 changed files with 1 additions and 1 deletions
  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', '');
     });