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' ) })