Files
dify/web/app/components/workflow/nodes/human-input/components/add-input-field.tsx

28 lines
575 B
TypeScript

'use client'
import type { FC } from 'react'
import type { FormInputItem } from '../types'
import * as React from 'react'
import InputField from '@/app/components/base/prompt-editor/plugins/hitl-input-block/input-field'
type Props = {
nodeId: string
onSave: (newPayload: FormInputItem) => void
onCancel: () => void
}
const AddInputField: FC<Props> = ({
nodeId,
onSave,
onCancel,
}) => {
return (
<InputField
nodeId={nodeId}
isEdit={false}
onChange={onSave}
onCancel={onCancel}
/>
)
}
export default React.memo(AddInputField)