mirror of
https://github.com/langgenius/dify.git
synced 2026-03-12 02:28:54 +08:00
Merge branch 'feat/mcp-frontend' into deploy/dev
This commit is contained in:
@ -2,8 +2,10 @@ import type { FC } from 'react'
|
||||
import type { SchemaRoot } from '../../../types'
|
||||
import SchemaNode from './schema-node'
|
||||
import { useSchemaNodeOperations } from './hooks'
|
||||
import cn from '@/utils/classnames'
|
||||
|
||||
export type VisualEditorProps = {
|
||||
className?: string
|
||||
schema: SchemaRoot
|
||||
rootName?: string
|
||||
readOnly?: boolean
|
||||
@ -11,11 +13,11 @@ export type VisualEditorProps = {
|
||||
}
|
||||
|
||||
const VisualEditor: FC<VisualEditorProps> = (props) => {
|
||||
const { schema, readOnly } = props
|
||||
const { className, schema, readOnly } = props
|
||||
useSchemaNodeOperations(props)
|
||||
|
||||
return (
|
||||
<div className='h-full overflow-auto rounded-xl bg-background-section-burn p-1 pl-2'>
|
||||
<div className={cn('h-full overflow-auto rounded-xl bg-background-section-burn p-1 pl-2', className)}>
|
||||
<SchemaNode
|
||||
name={props.rootName || 'structured_output'}
|
||||
schema={schema}
|
||||
|
||||
Reference in New Issue
Block a user