Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a8d5e43

Browse files
committedFeb 15, 2017
remove console log
1 parent ddb1efd commit a8d5e43

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎src/fields/core/fieldInput.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,9 @@
4343
mixins: [ abstractField ],
4444
methods: {
4545
formatValueToField(value) {
46-
console.info(value);
4746
if (typeof value === "undefined") {
4847
return value;
49-
}else{
48+
} else {
5049
switch(this.schema.inputType){
5150
case "date":
5251
return fecha.format(value, "YYYY-MM-DD");

0 commit comments

Comments
 (0)
Please sign in to comment.