Skip to content

Commit

Permalink
Merge pull request #1491 from ProcessMaker/bugfix/FOUR-12665
Browse files Browse the repository at this point in the history
FOUR-12665 The interstitial screen in the start event stops working
  • Loading branch information
ryancooley authored Dec 4, 2023
2 parents 7f5a95d + 6487d47 commit 2f987d8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/components/task.vue
Original file line number Diff line number Diff line change
Expand Up @@ -587,6 +587,14 @@ export default {
// 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 2f987d8

Please sign in to comment.