mirror of
https://gitee.com/dify_ai/dify.git
synced 2024-12-02 03:07:59 +08:00
fix: button rendering when using streaming (#9957)
This commit is contained in:
parent
de57af46c0
commit
de850262b8
@ -252,7 +252,7 @@ const MarkdownButton = ({ node }: any) => {
|
||||
className={cn('!h-8 !px-3 select-none')}
|
||||
onClick={() => onSend?.(message)}
|
||||
>
|
||||
<span className='text-[13px]'>{node.children[0].value}</span>
|
||||
<span className='text-[13px]'>{node.children[0]?.value || ''}</span>
|
||||
</Button>
|
||||
}
|
||||
MarkdownButton.displayName = 'MarkdownButton'
|
||||
|
Loading…
Reference in New Issue
Block a user