Skip to content

Commit cc6ad4f

Browse files
committed
(fix) footer lists are destroyed before click action
1 parent be7abdd commit cc6ad4f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/lib/Room/RoomFooter/RoomFooter.vue

+4-1
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,10 @@ export default {
361361
})
362362
363363
this.getTextareaRef().addEventListener('blur', () => {
364-
this.resetFooterList()
364+
setTimeout(() => {
365+
this.resetFooterList()
366+
}, 100)
367+
365368
if (isMobile) setTimeout(() => (this.keepKeyboardOpen = false))
366369
})
367370
},

0 commit comments

Comments
 (0)