@processmaker/screen-builder 2.71.2 → 2.71.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@processmaker/screen-builder",
3
- "version": "2.71.2",
3
+ "version": "2.71.3",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -169,6 +169,7 @@ export default {
169
169
  if (this.disabled) {
170
170
  attrs.disabled = true;
171
171
  }
172
+ attrs.accept = this.attrs.accept;
172
173
  return attrs;
173
174
  },
174
175
  required() {
@@ -541,11 +542,12 @@ export default {
541
542
  return null;
542
543
  },
543
544
  start() {
544
- this.uploading = true;
545
545
  // Prevent the upload from being started when the file is invalid.
546
546
  if (this.invalidFile) {
547
547
  return;
548
548
  }
549
+
550
+ this.uploading = true;
549
551
  if (this.parentRecordList(this) === null) {
550
552
  this.row_id = null;
551
553
  }