Skip to content

Commit

Permalink
chore(webapp): fix eslint error
Browse files Browse the repository at this point in the history
  • Loading branch information
Rotzbua authored and peterthomassen committed Jan 8, 2024
1 parent 77ec261 commit 8ce07b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/webapp/src/components/Field/RecordItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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', '');
});
Expand Down

0 comments on commit 8ce07b2

Please sign in to comment.