Skip to content

Commit

Permalink
Merge pull request #1493 from ProcessMaker/bugfix/FOUR-12754
Browse files Browse the repository at this point in the history
FOUR-12754 Fix Screen Interstitial unexpected behavior
  • Loading branch information
ryancooley authored Dec 11, 2023
2 parents 5221d9f + 1429ac2 commit d7a65a0
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions src/components/task.vue
Original file line number Diff line number Diff line change
Expand Up @@ -578,23 +578,6 @@ export default {
this.nodeId = this.initialNodeId;
this.requestData = this.value;
this.loopContext = this.initialLoopContext;
if (
this.$parent.task &&
!this.$parent.task.screen &&
this.$parent.task.allow_interstitial &&
this.$parent.task.interstitial_screen
) {
// if interstitial screen exists, show it
this.screen = this.$parent.task.interstitial_screen;
}
if (
this.$parent.task &&
this.$parent.task.interstitial_screen &&
this.$parent.task.process_request.status === 'ACTIVE'
) {
this.screen = this.$parent.task.interstitial_screen;
}
},
destroyed() {
this.unsubscribeSocketListeners();
Expand Down

0 comments on commit d7a65a0

Please sign in to comment.