Skip to content

Commit

Permalink
Release 4.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ljwagerfield committed Sep 23, 2023
1 parent e64df99 commit 5577454
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,9 @@ const options = {

const MyApp = () => (
<UploadDropzone options={options}
onUpdate={({ uploadedFiles }) => alert(uploadedFiles.map(x => x.fileUrl).join("\n"))}
onUpdate={({ uploadedFiles }) => {
console.log(uploadedFiles.map(x => x.fileUrl).join("\n"))
}}
width="600px"
height="375px" />
);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bytescale/upload-widget-react",
"version": "4.9.1",
"version": "4.9.2",
"author": "Bytescale <[email protected]> (https://www.bytescale.com)",
"description": "React File Upload UI Widget — Lightweight & supports: drag and drop, multiple uploads, image cropping, customization & more 🚀 Comes with Cloud Storage 🌐",
"license": "MIT",
Expand Down

0 comments on commit 5577454

Please sign in to comment.