Skip to content

Commit

Permalink
Merge pull request #1754 from ProcessMaker/bugfix/FOUR-19706-fall
Browse files Browse the repository at this point in the history
Bugfix-FOUR:19706: Improve error message when SVG's fails to upload - Fall
  • Loading branch information
ryancooley authored Oct 25, 2024
2 parents 0613365 + 96c70bc commit ac8ac33
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/components/renderer/file-upload.vue
Original file line number Diff line number Diff line change
Expand Up @@ -597,6 +597,10 @@ export default {
}
if (displayMessage.length > 0) {
const data = JSON.parse(displayMessage);
if (data.message) {
displayMessage = data.message;
}
window.ProcessMaker.alert(`${this.$t('File Upload Error:')} ${displayMessage}`, 'danger');
}
Expand Down

0 comments on commit ac8ac33

Please sign in to comment.