浏览代码

chore(webapp): fix eslint error

Rotzbua 1 年之前
父节点
当前提交
8ce07b2f9d
共有 1 个文件被更改,包括 1 次插入1 次删除
  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() {
   beforeMount() {
     // Initialize per-field value storage
     // Initialize per-field value storage
-    this.fields.forEach((field, i) => {
+    this.fields.forEach((field, /*i*/) => {
       this.$set(field, 'value', '');
       this.$set(field, 'value', '');
       this.$set(field, 'hint', '');
       this.$set(field, 'hint', '');
     });
     });