Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FOUR-10833: Update warning messages for file upload(s) #1450

Merged
merged 1 commit into from
Oct 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/renderer/file-upload.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export default {
this.setPrefix();
if (this.$refs['uploader']) {
this.$refs['uploader'].$forceUpdate();
// Re-upload stored files;
// Re-upload stored files;
// Files disappear when navigating between pages with the Page Navigation component
if (this.files.length > 0) {
this.$refs.uploader.uploader.addFiles(this.files);
Expand Down Expand Up @@ -476,7 +476,7 @@ export default {
if (file.ignored) {
this.invalidFile = true;
this.uploading = false;
window.ProcessMaker.alert(this.$t('File not allowed.'), 'danger');
window.ProcessMaker.alert(this.$t('This file type is not accepted.'), 'danger');
return false;
}
}
Expand Down
Loading