File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
webui/src/lib/components/app/chat/ChatMessages Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 4
4
import * as Collapsible from ' $lib/components/ui/collapsible/index.js' ;
5
5
import { buttonVariants } from ' $lib/components/ui/button/index.js' ;
6
6
import { Card } from ' $lib/components/ui/card' ;
7
- import { MarkdownContent } from ' $lib/components/app' ;
8
7
import { config } from ' $lib/stores/settings.svelte' ;
9
8
10
9
interface Props {
59
58
<Collapsible .Content >
60
59
<div class =" border-t border-muted px-3 pb-3" >
61
60
<div class =" pt-3" >
62
- <MarkdownContent content ={reasoningContent || ' ' } class =" text-xs leading-relaxed" />
61
+ <div class =" text-xs leading-relaxed break-words whitespace-pre-wrap" >
62
+ {reasoningContent ?? ' ' }
63
+ </div >
63
64
</div >
64
65
</div >
65
66
</Collapsible .Content >
You can’t perform that action at this time.
0 commit comments