Skip to content

Commit 2a84c58

Browse files
authored
fix: Dialogue image cannot be enlarged #2296 (#2327)
1 parent a06c5c0 commit 2a84c58

File tree

1 file changed

+2
-2
lines changed
  • ui/src/components/ai-chat/component/answer-content

1 file changed

+2
-2
lines changed

ui/src/components/ai-chat/component/answer-content/index.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<img v-if="application.avatar" :src="application.avatar" height="32px" width="32px" />
66
<LogoIcon v-else height="32px" width="32px" />
77
</div>
8-
<div class="content" @click.stop @mouseup="openControl">
8+
<div class="content" @mouseup="openControl">
99
<el-card shadow="always" class="dialog-card mb-8">
1010
<MdRenderer
1111
v-if="
@@ -82,7 +82,7 @@ const chatMessage = (question: string, type: 'old' | 'new', other_params_data?:
8282
}
8383
}
8484
const add_answer_text_list = (answer_text_list: Array<any>) => {
85-
answer_text_list.push([ ])
85+
answer_text_list.push([])
8686
}
8787
8888
const openControl = (event: any) => {

0 commit comments

Comments
 (0)