fix: descriptor port
This commit is contained in:
@@ -110,7 +110,7 @@ CALLBACK_FORM_DESCRIPTOR = FormDescriptor(
|
|||||||
name="then_row",
|
name="then_row",
|
||||||
type="row",
|
type="row",
|
||||||
label="Then",
|
label="Then",
|
||||||
link_port=LinkPort(id="then_output", label="Then"),
|
link_port=LinkPort(id=0, label="Then"),
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ EACH_FORM_DESCRIPTOR = FormDescriptor(
|
|||||||
name="list_row",
|
name="list_row",
|
||||||
type="row",
|
type="row",
|
||||||
label="List",
|
label="List",
|
||||||
link_port=LinkPort(id="then_output", label="Then"),
|
link_port=LinkPort(id=0, label="Then"),
|
||||||
elements=[
|
elements=[
|
||||||
LineElement(
|
LineElement(
|
||||||
name="list",
|
name="list",
|
||||||
@@ -57,7 +57,7 @@ EACH_FORM_DESCRIPTOR = FormDescriptor(
|
|||||||
name="else_row",
|
name="else_row",
|
||||||
type="row",
|
type="row",
|
||||||
label="Alternative path",
|
label="Alternative path",
|
||||||
link_port=LinkPort(id="else_output", label="Else"),
|
link_port=LinkPort(id=1, label="Else"),
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -71,7 +71,7 @@ RUN_FORM_DESCRIPTOR = FormDescriptor(
|
|||||||
name="then_row",
|
name="then_row",
|
||||||
type="row",
|
type="row",
|
||||||
label="Then",
|
label="Then",
|
||||||
link_port=LinkPort(id="then_output", label="Then"),
|
link_port=LinkPort(id=0, label="Then"),
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ SWITCH_FORM_DESCRIPTOR = FormDescriptor(
|
|||||||
name="switch_row",
|
name="switch_row",
|
||||||
type="row",
|
type="row",
|
||||||
label="Switch condition",
|
label="Switch condition",
|
||||||
link_port=LinkPort(id="case_1_output", label="case_1", is_addable=True),
|
link_port=LinkPort(id=0, label="case_1", is_addable=True),
|
||||||
elements=[
|
elements=[
|
||||||
AreaElement(
|
AreaElement(
|
||||||
name="switch_value",
|
name="switch_value",
|
||||||
@@ -58,7 +58,7 @@ SWITCH_FORM_DESCRIPTOR = FormDescriptor(
|
|||||||
name="default_row",
|
name="default_row",
|
||||||
type="row",
|
type="row",
|
||||||
label="Default",
|
label="Default",
|
||||||
link_port=LinkPort(id="default_output", label="default"),
|
link_port=LinkPort(id=0, label="default"),
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -70,7 +70,7 @@ TRIGGER_FORM_DESCRIPTOR = FormDescriptor(
|
|||||||
name="then_row",
|
name="then_row",
|
||||||
type="row",
|
type="row",
|
||||||
label="Then",
|
label="Then",
|
||||||
link_port=LinkPort(id="then_output", label="Then"),
|
link_port=LinkPort(id=0, label="Then"),
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -84,7 +84,7 @@ WAIT_FORM_DESCRIPTOR = FormDescriptor(
|
|||||||
name="then_row",
|
name="then_row",
|
||||||
type="row",
|
type="row",
|
||||||
label="Transition",
|
label="Transition",
|
||||||
link_port=LinkPort(id="then_output", label="then"),
|
link_port=LinkPort(id=0, label="then"),
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ WHILE_FORM_DESCRIPTOR = FormDescriptor(
|
|||||||
name="condition_row",
|
name="condition_row",
|
||||||
type="row",
|
type="row",
|
||||||
label="Parameter",
|
label="Parameter",
|
||||||
link_port=LinkPort(id="then_output", label="Then"),
|
link_port=LinkPort(id=0, label="Then"),
|
||||||
elements=[
|
elements=[
|
||||||
AreaElement(
|
AreaElement(
|
||||||
name="condition",
|
name="condition",
|
||||||
@@ -58,7 +58,7 @@ WHILE_FORM_DESCRIPTOR = FormDescriptor(
|
|||||||
name="else_row",
|
name="else_row",
|
||||||
type="row",
|
type="row",
|
||||||
label="Alternative path",
|
label="Alternative path",
|
||||||
link_port=LinkPort(id="else_output", label="Else"),
|
link_port=LinkPort(id=0, label="Else"),
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user