We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32b1748 commit 5dedcecCopy full SHA for 5dedcec
frontend/src/views/chat/ChatRow.vue
@@ -22,7 +22,7 @@ withDefaults(
22
<logo_fold v-if="!hideAvatar" />
23
</el-icon>
24
</div>
25
- <div :class="{ 'row-full': msg.role === 'assistant' }">
+ <div style="width: 100%" :class="{ 'row-full': msg.role === 'assistant' }">
26
<slot></slot>
27
28
frontend/src/views/chat/chat-block/UserChat.vue
@@ -23,7 +23,7 @@ function clickPredict() {
<span v-else-if="message?.record?.predict_record_id" class="prefix-title" @click="clickPredict">
{{ t('qa.data_predict') }}
</span>
- <span>{{ message?.content }}</span>
+ <span style="width: 100%">{{ message?.content }}</span>
</template>
29
0 commit comments