I'm trying to create an app with a multi-level nested parent/child structure.
So, (1) parent --> (2) child --> (3), child
to where child app (Level 2) can have another child app (Level 3). The issue I'm running into is:
- when I click "Done" on child app (Level 3), it returns me correctly to the setup page for child app (Level 2).
- But when I then click "Done" on child app (Level 2), rather than returning me to the setup page for the parent app (Level 1), it spits me back to the setup page for child app (Level 3).
I just have the typical parent/child input like this:
app(name: "anyOpenApp", appName: "Child App Name", namespace: "lnjustin", title: "Add a new Child", multiple: true)
Any idea what's up?