What do you mean ? You can use the result of the upload action from the explorer in the following action. The action should return you an object containing the url for your file.
So you can call the change variable value action to push it inside a variable
oh I tried that, but for some weird reason it wasn’t working with the normal upload element, it worked when I used the drag and drop upload element, maybe I was also doing something wrong,anyway it worked! thanks a lot!
@Alexis I ran into this problem with the Supabase storage action. there it seems like I can’t really grab the whole file in the event, so I can’t really perform then the upload action. Do you see a way to solve this?
What do you have in the event when you’re browsing the explorer ?
the onChange event of the normal file upload element just has an empty string in it:
did you mean that?
EDIT:
Actually, I just realized, that the drag&drop file upload has different values on the event:
but also not the whole file
Try to upload the event value, the explorer only display what it can, it doesn’t mean the file is not there, in the second screenshot the whole value (containing name and size) is the blob file and can be send to supabase from what I remember
On your first capture its possible the event value also contain a file probably
Also be aware for events we are only able to display a template of what you will receive, as we only have the data once the real event occur, probably we didnt provide a template for the event in the first screenshot and fallback to this empty string
Hi Alexis
Sorry for the late reply. I tested it with the event value and it works! Thanks a lot!