File Button > File Upload No Longer Works

The workaround seems to be to merge the value and files properties when using the new file upload/dropzone.

Assuming your file upload component is called "fileUpload", create a new transformer:

return {
  data: {{fileUpload.value[0]}},
  ...{{fileUpload.files[0]}}
}

Really, the files array should include the data property to make this just work out of the box.

1 Like