Skip to content

Commit e02fa3b

Browse files
committed
fix: bug fix
1 parent 6f22ef9 commit e02fa3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/views/chat/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
<el-drawer
5252
v-model="floatPopoverVisible"
5353
:with-header="false"
54-
:close-on-click-modal="false"
5554
:modal="false"
5655
direction="ltr"
5756
size="278"
@@ -814,8 +813,9 @@ const assistantPrepareInit = () => {
814813
inset: '0px auto auto 0px',
815814
})
816815
goEmpty()
817-
onClickOutside(floatPopoverRef, () => {
816+
onClickOutside(floatPopoverRef, (event) => {
818817
if (floatPopoverVisible.value) {
818+
console.log('event', event)
819819
floatPopoverVisible.value = false
820820
}
821821
})

0 commit comments

Comments
 (0)