support referen workflow output (#4414)

This commit is contained in:
LawyZheng
2026-01-08 14:00:22 +08:00
committed by GitHub
parent a1f0adf273
commit 00f7128ffd
3 changed files with 10 additions and 1 deletions

View File

@@ -73,7 +73,12 @@ function WorkflowParameterEditPanel({
onSave,
initialValues,
}: Props) {
const reservedKeys = ["current_item", "current_value", "current_index"];
const reservedKeys = [
"current_item",
"current_value",
"current_index",
"workflow_run_outputs",
];
const isCloud = useContext(CloudContext);
const isEditMode = !!initialValues;
const [key, setKey] = useState(initialValues?.key ?? "");