mirror of
https://github.com/langgenius/dify.git
synced 2026-01-14 06:07:33 +08:00
- Introduced Command node type in workflow with associated UI components and translations. - Enhanced SandboxLayer to manage sandbox attachment for Command nodes during execution. - Updated various components and constants to integrate Command node functionality across the workflow.
14 lines
341 B
TypeScript
14 lines
341 B
TypeScript
import type { FC } from 'react'
|
|
import type { CommandNodeType } from './types'
|
|
import type { NodeProps } from '@/app/components/workflow/types'
|
|
import * as React from 'react'
|
|
|
|
const Node: FC<NodeProps<CommandNodeType>> = () => {
|
|
return (
|
|
// No summary content - same as Code node
|
|
<div></div>
|
|
)
|
|
}
|
|
|
|
export default React.memo(Node)
|