mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 05:57:32 -07:00
TLにNote追加時にdeepcopyする (#6275)
This commit is contained in:
parent
ced63d4552
commit
19e6388576
1 changed files with 2 additions and 1 deletions
|
@ -50,7 +50,8 @@ export default Vue.extend({
|
||||||
});
|
});
|
||||||
|
|
||||||
const prepend = note => {
|
const prepend = note => {
|
||||||
(this.$refs.tl as any).prepend(note);
|
const _note = JSON.parse(JSON.stringify(note)); // deepcopy
|
||||||
|
(this.$refs.tl as any).prepend(_note);
|
||||||
|
|
||||||
if (this.sound) {
|
if (this.sound) {
|
||||||
this.$root.sound(note.userId === this.$store.state.i.id ? 'noteMy' : 'note');
|
this.$root.sound(note.userId === this.$store.state.i.id ? 'noteMy' : 'note');
|
||||||
|
|
Loading…
Reference in a new issue