mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-07-07 12:36:57 +00:00
fix "collapse renotes of my own notes"
This commit is contained in:
parent
c74e472041
commit
ae5b5e77cc
2 changed files with 2 additions and 2 deletions
|
@ -344,7 +344,7 @@ const canRenote = computed(() => ['public', 'home'].includes(appearNote.value.vi
|
||||||
const renoteCollapsed = ref(
|
const renoteCollapsed = ref(
|
||||||
prefer.s.collapseRenotes && isRenote && (
|
prefer.s.collapseRenotes && isRenote && (
|
||||||
($i && ($i.id === note.value.userId || $i.id === appearNote.value.userId
|
($i && ($i.id === note.value.userId || $i.id === appearNote.value.userId
|
||||||
|| $i.id === note.value.renote?.userId || $i.id === appearNote.value.renote.userId )) || // `||` must be `||`! See https://github.com/misskey-dev/misskey/issues/13131
|
|| $i.id === note.value.renote?.userId || $i.id === appearNote.value.renote?.userId )) || // `||` must be `||`! See https://github.com/misskey-dev/misskey/issues/13131
|
||||||
(appearNote.value.myReaction != null)
|
(appearNote.value.myReaction != null)
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
|
@ -344,7 +344,7 @@ const canRenote = computed(() => ['public', 'home'].includes(appearNote.value.vi
|
||||||
const renoteCollapsed = ref(
|
const renoteCollapsed = ref(
|
||||||
prefer.s.collapseRenotes && isRenote && (
|
prefer.s.collapseRenotes && isRenote && (
|
||||||
($i && ($i.id === note.value.userId || $i.id === appearNote.value.userId
|
($i && ($i.id === note.value.userId || $i.id === appearNote.value.userId
|
||||||
|| $i.id === note.value.renote?.userId || $i.id === appearNote.value.renote.userId )) || // `||` must be `||`! See https://github.com/misskey-dev/misskey/issues/13131
|
|| $i.id === note.value.renote?.userId || $i.id === appearNote.value.renote?.userId )) || // `||` must be `||`! See https://github.com/misskey-dev/misskey/issues/13131
|
||||||
(appearNote.value.myReaction != null)
|
(appearNote.value.myReaction != null)
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue