summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/MkNote.vue
diff options
context:
space:
mode:
authoranatawa12 <anatawa12@icloud.com>2023-07-07 20:05:11 +0900
committerGitHub <noreply@github.com>2023-07-07 20:05:11 +0900
commit2606167f0da856a200d61c0f1cecf0e02844c0f4 (patch)
treef5495c44b226b83d2331eefafd09c090f393a6f4 /packages/frontend/src/components/MkNote.vue
parentupdate node to 20.4.0 (diff)
downloadmisskey-2606167f0da856a200d61c0f1cecf0e02844c0f4.tar.gz
misskey-2606167f0da856a200d61c0f1cecf0e02844c0f4.tar.bz2
misskey-2606167f0da856a200d61c0f1cecf0e02844c0f4.zip
chore: collapse renote of my note (#11166)
* chore(frontend): 自分のnoteのrenoteも省略するように Co-authored-by: madorama <madorama999@gmail.com> * docs(changelog): add 見たことのあるRenoteを省略して表示をオンのときに自分のnoteのrenoteを省略するように --------- Co-authored-by: madorama <madorama999@gmail.com>
Diffstat (limited to 'packages/frontend/src/components/MkNote.vue')
-rw-r--r--packages/frontend/src/components/MkNote.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkNote.vue b/packages/frontend/src/components/MkNote.vue
index 7c9ddadbf8..8fc5e0de5b 100644
--- a/packages/frontend/src/components/MkNote.vue
+++ b/packages/frontend/src/components/MkNote.vue
@@ -222,7 +222,7 @@ const translation = ref<any>(null);
const translating = ref(false);
const showTicker = (defaultStore.state.instanceTicker === 'always') || (defaultStore.state.instanceTicker === 'remote' && appearNote.user.instance);
const canRenote = computed(() => ['public', 'home'].includes(appearNote.visibility) || appearNote.userId === $i.id);
-let renoteCollapsed = $ref(defaultStore.state.collapseRenotes && isRenote && (($i && ($i.id === note.userId)) || (appearNote.myReaction != null)));
+let renoteCollapsed = $ref(defaultStore.state.collapseRenotes && isRenote && (($i && ($i.id === note.userId || $i.id === appearNote.userId)) || (appearNote.myReaction != null)));
const keymap = {
'r': () => reply(true),