mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
fix(web): copy button visible at chat page normally (#4005)
Co-authored-by: rongjun.qiu <qiurj@hengtonggroup.com.cn>
This commit is contained in:
parent
1d3f1d88ef
commit
0704fe9695
|
@ -362,7 +362,7 @@ const Answer: FC<IAnswerProps> = ({
|
|||
{!item.isOpeningStatement && (
|
||||
<CopyBtn
|
||||
value={content}
|
||||
className={cn(s.copyBtn, 'mr-1')}
|
||||
className='mr-1'
|
||||
/>
|
||||
)}
|
||||
{((isShowPromptLog && !isResponding) || (!item.isOpeningStatement && isShowTextToSpeech)) && (
|
||||
|
|
|
@ -12,7 +12,6 @@ import cn from 'classnames'
|
|||
import CopyBtn from '@/app/components/app/chat/copy-btn'
|
||||
import SVGBtn from '@/app/components/app/chat/svg'
|
||||
import Flowchart from '@/app/components/app/chat/mermaid'
|
||||
import s from '@/app/components/app/chat/style.module.css'
|
||||
|
||||
// Available language https://github.com/react-syntax-highlighter/react-syntax-highlighter/blob/master/AVAILABLE_LANGUAGES_HLJS.MD
|
||||
const capitalizationLanguageNameMap: Record<string, string> = {
|
||||
|
@ -113,7 +112,7 @@ export function Markdown(props: { content: string; className?: string }) {
|
|||
/>
|
||||
}
|
||||
<CopyBtn
|
||||
className={cn(s.copyBtn, 'mr-1')}
|
||||
className='mr-1'
|
||||
value={String(children).replace(/\n$/, '')}
|
||||
isPlain
|
||||
/>
|
||||
|
|
Loading…
Reference in New Issue
Block a user