fix: updated Run Flow to not group outputs (#8806)
Changed run flow to not group outputs
This commit is contained in:
parent
b7af3d5446
commit
514b31282e
1 changed files with 5 additions and 1 deletions
|
|
@ -52,6 +52,7 @@ class RunFlowBaseComponent(Component):
|
|||
display_name="Flow Data Output",
|
||||
method="data_output",
|
||||
hidden=True,
|
||||
group_outputs=True,
|
||||
tool_mode=False, # This output is not intended to be used as a tool, so tool_mode is disabled.
|
||||
),
|
||||
Output(
|
||||
|
|
@ -59,9 +60,12 @@ class RunFlowBaseComponent(Component):
|
|||
display_name="Flow Dataframe Output",
|
||||
method="dataframe_output",
|
||||
hidden=True,
|
||||
group_outputs=True,
|
||||
tool_mode=False, # This output is not intended to be used as a tool, so tool_mode is disabled.
|
||||
),
|
||||
Output(name="flow_outputs_message", display_name="Flow Message Output", method="message_output"),
|
||||
Output(
|
||||
name="flow_outputs_message", group_outputs=True, display_name="Flow Message Output", method="message_output"
|
||||
),
|
||||
]
|
||||
default_keys = ["code", "_type", "flow_name_selected", "session_id"]
|
||||
FLOW_INPUTS: list[dotdict] = []
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue