Jesse Roberts:
I am working on installing Uppy into an app. when i call uppy, a ? is added to the url when the uppy modal appears, which breaks the call to the server, and breaks uppy loading. i am using the demo docs, and can’t find anything in the console as to why this is happening. any thoughts?
Andrew Dam:
Are you instantiating uppy using an HTML button by chance? Buttons can sometimes have a weird behavior in forms and will try to submit the page by default.
If so, you can try adding a .prevent after your @click action, so @click.prevent="..."
Jesse Roberts:
that worked. thanks!