Skip to content

Commit 32c7627

Browse files
committed
added missing comma that failed in Travis
1 parent 2724809 commit 32c7627

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fields/core/fieldInput.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
:type="schema.inputType",
66
:value="value",
77
@input="value = $event.target.value",
8-
@blur="onBlur"
8+
@blur="onBlur",
99
:class="schema.fieldClasses",
1010
@change="schema.onChange || null",
1111
:disabled="disabled",
@@ -133,7 +133,7 @@ export default {
133133
break;
134134
}
135135
},
136-
136+
137137
created () {
138138
if(this.schema.inputType == "file")
139139
console.warn("The 'file' type in input field is deprecated. Use 'file' field instead.");

0 commit comments

Comments
 (0)