We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f92721 commit 86a02aeCopy full SHA for 86a02ae
src/components/AuthorInputField.vue
@@ -110,7 +110,7 @@ export default {
110
if (this.value && !Array.isArray(this.value)) this.value = [this.value];
111
this.value = this.value || [];
112
// set the name to github user if not given
113
- this.value.forEach(v => v.name = v.name || v.github_user)
+ this.value.forEach(v => (v.name = v.name || v.github_user));
114
this.value = this.value.filter(v => v.name && v.name != "");
115
this.commitValue();
116
0 commit comments