fix: Dialogue image cannot be enlarged #2296 (#2327)

This commit is contained in:
shaohuzhang1 2025-02-19 14:12:57 +08:00 committed by GitHub
parent a06c5c097e
commit 2a84c58d4b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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) => {