Skip to content

Commit

Permalink
added missing comma that failed in Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
zoul0813 committed Dec 12, 2017
1 parent 2724809 commit 32c7627
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fields/core/fieldInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
:type="schema.inputType",
:value="value",
@input="value = $event.target.value",
@blur="onBlur"
@blur="onBlur",
:class="schema.fieldClasses",
@change="schema.onChange || null",
:disabled="disabled",
Expand Down Expand Up @@ -133,7 +133,7 @@ export default {
break;
}
},
created () {
if(this.schema.inputType == "file")
console.warn("The 'file' type in input field is deprecated. Use 'file' field instead.");
Expand Down

0 comments on commit 32c7627

Please sign in to comment.