Docs: update latest updates. (#11188)

### Type of change

- [x] Documentation Update
This commit is contained in:
Kevin Hu
2025-11-12 10:38:33 +08:00
committed by GitHub
parent 09e971dcc8
commit e9de25c973
9 changed files with 9 additions and 16 deletions

View File

@ -349,7 +349,7 @@ class Canvas(Graph):
i += 1
else:
for _, ele in cpn.get_input_elements().items():
if isinstance(ele, dict) and ele.get("_cpn_id") and ele.get("_cpn_id") not in self.path[:i]:
if isinstance(ele, dict) and ele.get("_cpn_id") and ele.get("_cpn_id") not in self.path[:i] and self.path[0].lower().find("userfillup") < 0:
self.path.pop(i)
t -= 1
break