From 2cde1dde4442b5724f7d032fb13b932e77108917 Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Thu, 27 Nov 2025 16:11:25 +0800 Subject: [PATCH] style: update style --- frontend/src/views/chat/QuickQuestion.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/chat/QuickQuestion.vue b/frontend/src/views/chat/QuickQuestion.vue index cd68babb..6c17a79b 100644 --- a/frontend/src/views/chat/QuickQuestion.vue +++ b/frontend/src/views/chat/QuickQuestion.vue @@ -14,6 +14,7 @@ const getRecommendQuestions = () => { } const quickAsk = (question: string) => { emits('quickAsk', question) + visible.value = false } const onChatStop = () => { @@ -22,7 +23,6 @@ const onChatStop = () => { const loadingOver = () => { emits('loadingOver') - visible.value = false } const emits = defineEmits(['quickAsk', 'loadingOver', 'stop'])