Skip to content

Commit

Permalink
🐞 fix: 修正侧边栏不能 @ 的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
imlinhanchao committed May 22, 2023
1 parent 86985a9 commit d85f325
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/view/chatroom.vue
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ import CustomMsg from '../components/custom-msg.vue';
menu.push({
label: `@${item.userName}`,
click: () => {
this.$emit('msg', `@${item.userName} `);
this.appendMsg(`@${item.userName} `);
}
});
menu.push({
Expand Down

0 comments on commit d85f325

Please sign in to comment.