Skip to content

Commit 86a02ae

Browse files
committed
Fix formatting
1 parent 1f92721 commit 86a02ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/AuthorInputField.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export default {
110110
if (this.value && !Array.isArray(this.value)) this.value = [this.value];
111111
this.value = this.value || [];
112112
// set the name to github user if not given
113-
this.value.forEach(v => v.name = v.name || v.github_user)
113+
this.value.forEach(v => (v.name = v.name || v.github_user));
114114
this.value = this.value.filter(v => v.name && v.name != "");
115115
this.commitValue();
116116

0 commit comments

Comments
 (0)