We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0345f49 + f805b17 commit d619975Copy full SHA for d619975
2 files changed
.github/workflows/ci.yml
@@ -25,9 +25,6 @@ jobs:
25
- name: set-vfe-branch
26
run: |
27
export VFE_BRANCH=''
28
- if [[ ${{ contains(github.event.pull_request.body, 'ci:next') }} ]]; then
29
- export VFE_BRANCH=next
30
- fi
31
if [[ "${{ steps.install-vfe.outputs.match }}" != "" ]]; then
32
export VFE_BRANCH=${{ steps.install-vfe.outputs.group1 }}
33
fi
src/components/renderer/file-upload.vue
@@ -533,6 +533,10 @@ export default {
533
}
534
535
if (displayMessage.length > 0) {
536
+ const data = JSON.parse(displayMessage);
537
+ if (data.message) {
538
+ displayMessage = data.message;
539
+ }
540
window.ProcessMaker.alert(`${this.$t('File Upload Error:')} ${displayMessage}`, 'danger');
541
542
0 commit comments