[Sprint/GiddyGiraffe] (fix): encode objects to json in the Upload service
closes #952
depends on engine!190
0/1 discussion resolved
mentioned in merge request engine!190
changed the description
approved this merge request
35 35 36 36 for (let key in data) { 37 37 if (data[key] !== null) { 38 formData.append(key, data[key]); 38 const field = typeof data[key] == 'object' ? JSON.stringify(data[key]) : data[key]; - Owner
@eiennohi is php expecting json? Is there a backend fix here. Just want to be sure we don't break something