🐛 Fix upload file after cancelling (#493)

This commit is contained in:
Montassar Ghanmy
2024-04-26 10:09:00 +01:00
committed by GitHub
parent c082ad15ab
commit 493e18649b
@@ -64,6 +64,7 @@ export default class UploadZone extends React.Component<PropsType, StateType> {
setCallback() {
this.file_input.onchange = (e: any) => {
this.change(e);
e.target.value = null;
};
}