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
function generatePreview(event) {
const reader = new FileReader();
reader.onload = (event) => {
const image = event.target.result;
// set the image as the src of an image element
}
- reader.readAsDataURL(details.acceptedFiles[0]);+ reader.readAsDataURL(event.details.acceptedFiles[0]);
}
The text was updated successfully, but these errors were encountered:
Link to the Page
https://next.skeleton.dev/docs/components/file-upload/svelte#image-previews
Describe the Issue (screenshots encouraged!)
Discord message
Correction:
The text was updated successfully, but these errors were encountered: