We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2ad157 commit ea24681Copy full SHA for ea24681
src/routes/trips/uploadImages/[trip]/+page.svelte
@@ -27,6 +27,7 @@
27
response.json().then((response_data) => {
28
for(let image in response_data) {
29
let newMedia = response_data[image] as Media;
30
+ newMedia.id = image;
31
images.push(newMedia)
32
}
33
});
0 commit comments