@processmaker/screen-builder 2.79.0 → 2.79.1
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 +183 -76
- package/dist/vue-form-builder.common.js.map +1 -1
- package/dist/vue-form-builder.umd.js +183 -76
- package/dist/vue-form-builder.umd.js.map +1 -1
- package/dist/vue-form-builder.umd.min.js +1 -1
- package/dist/vue-form-builder.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/task.vue +8 -0
package/package.json
CHANGED
package/src/components/task.vue
CHANGED
|
@@ -587,6 +587,14 @@ export default {
|
|
|
587
587
|
// if interstitial screen exists, show it
|
|
588
588
|
this.screen = this.$parent.task.interstitial_screen;
|
|
589
589
|
}
|
|
590
|
+
|
|
591
|
+
if (
|
|
592
|
+
this.$parent.task &&
|
|
593
|
+
this.$parent.task.interstitial_screen &&
|
|
594
|
+
this.$parent.task.process_request.status === 'ACTIVE'
|
|
595
|
+
) {
|
|
596
|
+
this.screen = this.$parent.task.interstitial_screen;
|
|
597
|
+
}
|
|
590
598
|
},
|
|
591
599
|
destroyed() {
|
|
592
600
|
this.unsubscribeSocketListeners();
|