Skip to content

Commit

Permalink
Merge pull request #410 from zoul0813/hotfix/409-upload-id
Browse files Browse the repository at this point in the history
fixes #409 - added ":" to id property in template
  • Loading branch information
zoul0813 authored Mar 7, 2018
2 parents 1300882 + eadccc2 commit d97c8d7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/vfg-core.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/vfg.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/fields/core/fieldUpload.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template lang="pug">
.wrapper
input.form-control(
id="getFieldID(schema)",
:id="getFieldID(schema)",
type="file",
:name="schema.inputName",
@change="onChange",
Expand All @@ -10,7 +10,7 @@
:placeholder="schema.placeholder",
:readonly="schema.readonly",
:required="schema.required",
:disabled="disabled",)
:disabled="disabled")
</template>

<script>
Expand Down

0 comments on commit d97c8d7

Please sign in to comment.