fix: 修复表情回应一处报错

This commit is contained in:
kuaifan 2024-09-19 06:58:17 +08:00
parent 594c19da03
commit 45c20dbed9
3 changed files with 16 additions and 2 deletions

View File

@ -235,7 +235,7 @@ export default {
* 鼠标移入事件单次 * 鼠标移入事件单次
*/ */
onContainerMouseMove() { onContainerMouseMove() {
if (this.windowTouch) { if (this.$store?.state.windowTouch) {
return; return;
} }
setTimeout(() => { setTimeout(() => {

View File

@ -85,7 +85,7 @@ export default {
}, },
mounted() { mounted() {
this.initData() this.initData()
if(!this.$store.state.windowPortrait){ if(!this.$store?.state.windowPortrait){
this.onMonitorWheel() this.onMonitorWheel()
} }
}, },

View File

@ -568,6 +568,20 @@ body.dark-mode-reverse {
} }
} }
.chat-emoji-wrapper {
.chat-emoji-box {
ul {
&.emoji {
> li {
&:active {
background-color: #1f1f1f;
}
}
}
}
}
}
.ql-mention-list-container { .ql-mention-list-container {
.ql-mention-list-item { .ql-mention-list-item {
.mention-item-at { .mention-item-at {