From 1c6b0f8a8629603b64db913cb2dd49fe8769fed7 Mon Sep 17 00:00:00 2001 From: wangdan-fit2cloud Date: Thu, 24 Apr 2025 17:30:58 +0800 Subject: [PATCH] fix: api input bug --- ui/src/components/ai-chat/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/ai-chat/index.vue b/ui/src/components/ai-chat/index.vue index 47ba53e19..781f558b5 100644 --- a/ui/src/components/ai-chat/index.vue +++ b/ui/src/components/ai-chat/index.vue @@ -172,7 +172,7 @@ const isAPIInput = computed( ) const showUserInputContent = computed(() => { return ( - (((isUserInput.value || isAPIInput) && firsUserInput.value) || showUserInput.value) && + (((isUserInput.value || isAPIInput.value) && firsUserInput.value) || showUserInput.value) && props.type !== 'log' ) })