Skip to content
Snippets Groups Projects
Commit 0d115833 authored by syuilo's avatar syuilo
Browse files

Chat UIでサウンドがならない問題を修正

parent 9860489f
No related branches found
Tags 13.11.0.beta-1
No related merge requests found
......@@ -61,11 +61,6 @@ export default defineComponent({
type: String,
required: false
},
sound: {
type: Boolean,
required: false,
default: false,
}
},
emits: ['note', 'queue', 'before', 'after'],
......@@ -95,9 +90,7 @@ export default defineComponent({
this.$emit('note');
if (this.sound) {
sound.play(note.userId === this.$i.id ? 'noteMy' : 'note');
}
sound.play(note.userId === this.$i.id ? 'noteMy' : 'note');
};
const onUserAdded = () => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment