Skip to content

Commit 726071a

Browse files
authored
修改推理过程过长时被截断的问题 (#637)
Signed-off-by: King5-12 <[email protected]>
1 parent abc479e commit 726071a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/views/chat/components/Message/Reasoning.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const contentWrapperComputedClass = computed(() => {
4848
return [
4949
'overflow-hidden',
5050
'transition-all duration-300 ease-in-out',
51-
(isCollapsed.value || !hasReasoningText.value) ? 'max-h-0 opacity-0' : 'max-h-[500px] opacity-100',
51+
(isCollapsed.value || !hasReasoningText.value) ? 'max-h-0 opacity-0' : 'opacity-100',
5252
]
5353
})
5454

0 commit comments

Comments
 (0)