Browse Source

fix: button rendering when using streaming (#9957)

crazywoola 5 months ago
parent
commit
de850262b8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      web/app/components/base/markdown.tsx

+ 1 - 1
web/app/components/base/markdown.tsx

@@ -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'