Skip to content
Snippets Groups Projects
Commit aafdcccd authored by S Kopper's avatar S Kopper
Browse files

fix: note history not working

parent 32318bbb
No related branches found
No related tags found
No related merge requests found
......@@ -132,7 +132,7 @@ const isRenote = (
);
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 renoteUri = appearNote.value.renote ? appearNote.value.renote.uri : null;
......
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