flowbite-vue icon indicating copy to clipboard operation
flowbite-vue copied to clipboard

FileInput multiple files selection dropzone issue

Open code2prog opened this issue 2 years ago • 0 comments

File selection does not work properly when you want to select multiple files by clicking on dropzone area. It is not possible to select multiple files in the selection window.. The hidden input field does not have the "multiple" parameter

Sample Code <FileInput multiple v-model="form.files" :dropzone="true"> <p class="!mt-1 text-xs text-gray-500 dark:text-gray-400"> SVG, PNG, JPG or GIF (MAX. 800x400px) </p> </FileInput>

After change dropzone to false input field work correctly and allow select multiple files

code2prog avatar Aug 28 '23 09:08 code2prog