We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent439104f commit44f00c9Copy full SHA for 44f00c9
src/views/chat/components/Message/Text.vue
@@ -66,12 +66,14 @@ defineExpose({ textRef })
66
<template>
67
<divclass="text-black":class="wrapClass">
68
<divref="textRef"class="leading-relaxed break-words">
69
- <divv-if="!inversion"class="flex items-end">
70
- <divv-if="!asRawText"class="w-full markdown-body"v-html="text" />
71
- <divv-elseclass="w-full whitespace-pre-wrap"v-text="text" />
72
- <spanv-if="loading"class="dark:text-white w-[4px] h-[20px] block animate-blink" />
+ <divv-if="!inversion">
+ <divv-if="!asRawText"class="markdown-body"v-html="text" />
+ <divv-elseclass="whitespace-pre-wrap"v-text="text" />
73
</div>
74
<divv-elseclass="whitespace-pre-wrap"v-text="text" />
+ <templatev-if="loading">
75
+ <spanclass="dark:text-white w-[4px] h-[20px] block animate-blink" />
76
+ </template>
77
78
79
</template>