You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the onImageUpload handler in the ImageUpload.tsx view, only handles a single image to upload. This makes uploading bulk images quite painful. To fix this, the current idea to go forward is to update onImageUpload to loop over the selected files, instead of only working on images[0]. It would apply the same tags to each image, and then make a request to the backend to upload each one individually.
Currently, the
onImageUpload
handler in theImageUpload.tsx
view, only handles a single image to upload. This makes uploading bulk images quite painful. To fix this, the current idea to go forward is to updateonImageUpload
to loop over the selected files, instead of only working onimages[0]
. It would apply the same tags to each image, and then make a request to the backend to upload each one individually.See here for supporting code.
The text was updated successfully, but these errors were encountered: