@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/dist/vue-form-builder.common.js +1369 -1356
- package/dist/vue-form-builder.common.js.map +1 -1
- package/dist/vue-form-builder.css +1 -1
- package/dist/vue-form-builder.umd.js +1369 -1356
- package/dist/vue-form-builder.umd.js.map +1 -1
- package/dist/vue-form-builder.umd.min.js +5 -5
- package/dist/vue-form-builder.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/renderer/file-upload.vue +3 -1
package/package.json
CHANGED
|
@@ -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
|
}
|