mirror of
https://github.com/langgenius/webapp-conversation.git
synced 2025-12-08 17:32:27 +08:00
feat: question use streamdown
This commit is contained in:
@ -4,7 +4,7 @@ import React from 'react'
|
|||||||
import type { IChatItem } from '../type'
|
import type { IChatItem } from '../type'
|
||||||
import s from '../style.module.css'
|
import s from '../style.module.css'
|
||||||
|
|
||||||
import { Markdown } from '@/app/components/base/markdown'
|
import StreamdownMarkdown from '@/app/components/base/streamdown-markdown'
|
||||||
import ImageGallery from '@/app/components/base/image-gallery'
|
import ImageGallery from '@/app/components/base/image-gallery'
|
||||||
|
|
||||||
type IQuestionProps = Pick<IChatItem, 'id' | 'content' | 'useCurrentUserAvatar'> & {
|
type IQuestionProps = Pick<IChatItem, 'id' | 'content' | 'useCurrentUserAvatar'> & {
|
||||||
@ -23,7 +23,7 @@ const Question: FC<IQuestionProps> = ({ id, content, useCurrentUserAvatar, imgSr
|
|||||||
{imgSrcs && imgSrcs.length > 0 && (
|
{imgSrcs && imgSrcs.length > 0 && (
|
||||||
<ImageGallery srcs={imgSrcs} />
|
<ImageGallery srcs={imgSrcs} />
|
||||||
)}
|
)}
|
||||||
<Markdown content={content} />
|
<StreamdownMarkdown content={content} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user