All is in title, I would like to disable the possibility to drag and drop files in dashboard (just keep the browse), is it possible please ?
Thanks
All is in title, I would like to disable the possibility to drag and drop files in dashboard (just keep the browse), is it possible please ?
Thanks
You can use the disableLocalFiles
field to disable local file input and file drag-and-drop in the dashboard.
Sample code
uppy.use( Dashboard, {
trigger: '#upload-btn',
inline: false,
closeModalOnClickOutside: true,
proudlyDisplayPoweredByUppy: true,
showProgressDetails: true,
disableLocalFiles: true, // This line will disable the local file inputs and files drag & drop.
} );