@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@processmaker/screen-builder",
3
- "version": "2.79.0",
3
+ "version": "2.79.1",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -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();