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