Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippeAccorsi committed Dec 5, 2019
1 parent ae88159 commit 9a3e3dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/container/GuestUpload.jsx
Expand Up @@ -173,7 +173,7 @@ class GuestUpload extends React.Component {
switch (jsonResult400.code) {
case 3002: this.sendGlobalFlashMessage(props.t('A content with the same name already exists')); break
case 6002: this.sendGlobalFlashMessage(props.t('The file is larger than the maximum file size allowed')); break
case 6003: this.sendGlobalFlashMessage(props.t("Error, the shared space exceed its maximum size")); break
case 6003: this.sendGlobalFlashMessage(props.t('Error, the shared space exceed its maximum size')); break
default: this.sendGlobalFlashMessage(props.t('Error while uploading file')); break
}
this.setState({ progressUpload: { display: this.UPLOAD_STATUS.BEFORE_LOAD, percent: 0 } })
Expand Down

0 comments on commit 9a3e3dc

Please sign in to comment.