From 41ca028665ebb9e1af8f5ef5f3b341f244b5a643 Mon Sep 17 00:00:00 2001
From: shaohuzhang1 <shaohu.zhang@fit2cloud.com>
Date: Wed, 19 Feb 2025 14:11:27 +0800
Subject: [PATCH] fix: Dialogue image cannot be enlarged

---
 ui/src/components/ai-chat/component/answer-content/index.vue | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ui/src/components/ai-chat/component/answer-content/index.vue b/ui/src/components/ai-chat/component/answer-content/index.vue
index f8c9548c569..73adf3bfda4 100644
--- a/ui/src/components/ai-chat/component/answer-content/index.vue
+++ b/ui/src/components/ai-chat/component/answer-content/index.vue
@@ -5,7 +5,7 @@
         <img v-if="application.avatar" :src="application.avatar" height="32px" width="32px" />
         <LogoIcon v-else height="32px" width="32px" />
       </div>
-      <div class="content" @click.stop @mouseup="openControl">
+      <div class="content" @mouseup="openControl">
         <el-card shadow="always" class="dialog-card mb-8">
           <MdRenderer
             v-if="
@@ -82,7 +82,7 @@ const chatMessage = (question: string, type: 'old' | 'new', other_params_data?:
   }
 }
 const add_answer_text_list = (answer_text_list: Array<any>) => {
-  answer_text_list.push([ ])
+  answer_text_list.push([])
 }
 
 const openControl = (event: any) => {