Skip to content

Commit 1c6b0f8

Browse files
fix: api input bug
1 parent d85801f commit 1c6b0f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/components/ai-chat/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ const isAPIInput = computed(
172172
)
173173
const showUserInputContent = computed(() => {
174174
return (
175-
(((isUserInput.value || isAPIInput) && firsUserInput.value) || showUserInput.value) &&
175+
(((isUserInput.value || isAPIInput.value) && firsUserInput.value) || showUserInput.value) &&
176176
props.type !== 'log'
177177
)
178178
})

0 commit comments

Comments
 (0)