Skip to content

Commit

Permalink
Use css to hide input element
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxGfeller committed Mar 2, 2021
1 parent 8c80ce8 commit d467d44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FileSelector.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<input class="hidden" type="file" ref="inputRef" :multiple="allowMultiple" :accept="accept" @change="updateFiles">
<input style="display: none;" type="file" ref="inputRef" :multiple="allowMultiple" :accept="accept" @change="updateFiles">
<slot :openDialog="openDialog" />
</template>
<script>
Expand Down

0 comments on commit d467d44

Please sign in to comment.