Skip to content

Commit

Permalink
Merge pull request #1674 from ProcessMaker/bugfix/FOUR-18851
Browse files Browse the repository at this point in the history
Set nodeId for redirect events for webentry
  • Loading branch information
ryancooley authored Aug 27, 2024
2 parents d39e7b8 + e75ab0b commit 389a09b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/task.vue
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ export default {
this.task.interstitial_screen['_interstitial'] = true;
this.screen = this.task.interstitial_screen;
}
if (this.task.bpmn_tag_name === 'manualTask') {
if (this.task?.bpmn_tag_name === 'manualTask') {
this.checkTaskStatus();
this.reload();
}
Expand Down Expand Up @@ -808,6 +808,7 @@ export default {
if (data?.params[0]?.tokenId) {
this.loadingTask = true;
this.nodeId = data.params[0].nodeId;
this.taskId = data.params[0].tokenId;
this.reload();
}
Expand Down

0 comments on commit 389a09b

Please sign in to comment.