fix: note history not working
This commit is contained in:
parent
32318bbbfa
commit
aafdcccd24
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ const isRenote = (
|
||||||
);
|
);
|
||||||
|
|
||||||
const el = shallowRef<HTMLElement>();
|
const el = shallowRef<HTMLElement>();
|
||||||
let appearNote = computed(() => isRenote ? note.value.renote as Misskey.entities.Note : note);
|
let appearNote = computed(() => isRenote ? note.value.renote as Misskey.entities.Note : note.value);
|
||||||
const renoteUrl = appearNote.value.renote ? appearNote.value.renote.url : null;
|
const renoteUrl = appearNote.value.renote ? appearNote.value.renote.url : null;
|
||||||
const renoteUri = appearNote.value.renote ? appearNote.value.renote.uri : null;
|
const renoteUri = appearNote.value.renote ? appearNote.value.renote.uri : null;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue