Skip to content

Commit

Permalink
chore: fix markdown syntax issues ('<' and '{' now require escaping)
Browse files Browse the repository at this point in the history
  • Loading branch information
bradenmacdonald committed Dec 16, 2024
1 parent 2dd6935 commit 0f6004f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -802,8 +802,8 @@ The following subcomponents have been added / reworked:

* fix: update image sizing according to figma design

Co-authored-by: vlasovmichael <mykhailo.vlasov@raccoongang.com>
Co-authored-by: vzadorozhnii <vladyslav.zadorozhnii@raccoongang.com>
Co-authored-by: vlasovmichael \<mykhailo.vlasov@raccoongang.com\>
Co-authored-by: vzadorozhnii \<vladyslav.zadorozhnii@raccoongang.com\>



Expand Down
6 changes: 3 additions & 3 deletions src/Dropzone/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ The `Dropzone` allows users to upload files via drag and drop, or by clicking th

You will also need to provide upload logic yourself via `onProcessUpload` prop which accepts function that should take care of uploading the file to the backend (i.e. send HTTP request).
This function accepts an object with following content as its only argument:
- {object} fileData - Metadata about the uploaded file.
- {object} requestConfig - Config to pass to `axios` call (this is required to display progress bar and hande cancel action).
- {function} handleError - Function to communicate to `Dropzone` that file upload resulted in failure, expects `Error` object as its only argument.
- \{object\} fileData - Metadata about the uploaded file.
- \{object\} requestConfig - Config to pass to `axios` call (this is required to display progress bar and hande cancel action).
- \{function\} handleError - Function to communicate to `Dropzone` that file upload resulted in failure, expects `Error` object as its only argument.

Each example below implements such a function.

Expand Down

0 comments on commit 0f6004f

Please sign in to comment.