feat: rename input to inputs, output to outputs

This commit is contained in:
Fu Diwei
2025-01-04 16:41:30 +08:00
parent ae11d5ee3d
commit 01ede08a79
4 changed files with 14 additions and 14 deletions

View File

@@ -237,7 +237,7 @@ const DeployNodeForm = ({ node }: DeployFormProps) => {
options={previousOutput.map((item) => {
return {
label: item.name,
options: item.output?.map((output) => {
options: item.outputs?.map((output) => {
return {
label: `${item.name} - ${output.label}`,
value: `${item.id}#${output.name}`,