fix: descriptor port

This commit is contained in:
TheNoxium
2025-11-24 04:32:42 +07:00
parent 0d6ecfeb40
commit 5aa14f5ae8
7 changed files with 10 additions and 10 deletions

View File

@@ -43,7 +43,7 @@ EACH_FORM_DESCRIPTOR = FormDescriptor(
name="list_row",
type="row",
label="List",
link_port=LinkPort(id="then_output", label="Then"),
link_port=LinkPort(id=0, label="Then"),
elements=[
LineElement(
name="list",
@@ -57,7 +57,7 @@ EACH_FORM_DESCRIPTOR = FormDescriptor(
name="else_row",
type="row",
label="Alternative path",
link_port=LinkPort(id="else_output", label="Else"),
link_port=LinkPort(id=1, label="Else"),
),
]
)