fix(stage-ui): error item should fit content width, reasoing should not have pt

This commit is contained in:
Neko Ayaka
2026-05-08 21:10:32 +08:00
parent 4ecd51076d
commit 13566667e1
2 changed files with 1 additions and 2 deletions
@@ -83,7 +83,7 @@ const copyText = computed(() => getChatHistoryItemCopyText(props.message as Chat
<div
v-if="canRetry && !showPlaceholder"
:class="[
'self-end mt-1',
'self-end mt-1 w-fit',
]"
>
<Button
@@ -15,7 +15,6 @@ const reasoningContent = computed(() => props.message.categorization?.reasoning?
const hasReasoning = computed(() => reasoningContent.value.length > 0)
const containerClasses = computed(() => [
'mt-2',
props.variant === 'mobile' ? 'text-xs' : 'text-sm',
])
</script>