From aafdcccd247fd5fdef5b14fae033e87bf058aec5 Mon Sep 17 00:00:00 2001 From: ShittyKopper Date: Tue, 26 Dec 2023 21:56:34 +0300 Subject: [PATCH] fix: note history not working --- packages/frontend/src/components/SkOldNoteWindow.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/src/components/SkOldNoteWindow.vue b/packages/frontend/src/components/SkOldNoteWindow.vue index 237032c9d..f8de28e34 100644 --- a/packages/frontend/src/components/SkOldNoteWindow.vue +++ b/packages/frontend/src/components/SkOldNoteWindow.vue @@ -132,7 +132,7 @@ const isRenote = ( ); const el = shallowRef(); -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;