Skip to content

Commit

Permalink
Merge pull request #1666 from ProcessMaker/bugfix/FOUR-17472
Browse files Browse the repository at this point in the history
FOUR-17472 Fix reference to _parent in MultiInstance Tasks
  • Loading branch information
ryancooley authored Aug 9, 2024
2 parents dbd341b + 67c54d0 commit 4c24e73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/screen-renderer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
:is="component"
ref="component"
:vdata="value"
:_parent="_parent"
:_parent="_parent || value._parent"
:_initial-page="currentPage"
@after-submit="afterSubmit"
@submit="submit"
Expand Down
2 changes: 1 addition & 1 deletion src/components/vue-form-renderer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<screen-renderer
ref="renderer"
:value="data"
:_parent="_parent"
:_parent="_parent || data._parent"
:definition="definition"
:current-page="currentPage"
data-cy="screen-renderer"
Expand Down

0 comments on commit 4c24e73

Please sign in to comment.