fix(10.1-05): fix Route Action connections in status sub-workflow

Switch node connections must use "main" array format with indices,
not named output keys. Changed from:
  { "list": [...], "status": [...] }
to:
  { "main": [ [...], [...], [...] ] }

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Lucas Berger
2026-02-04 21:52:36 -05:00
parent 58e4fbdbbe
commit 99612a9649
+4 -8
View File
@@ -276,25 +276,21 @@
]
},
"Route Action": {
"list": [
"main": [
[
{
"node": "Prepare List Request",
"type": "main",
"index": 0
}
]
],
"status": [
],
[
{
"node": "Prepare Status Request",
"type": "main",
"index": 0
}
]
],
"paginate": [
],
[
{
"node": "Prepare Paginate Request",
@@ -381,4 +377,4 @@
},
"staticData": null,
"tags": []
}
}