display new direct replies at end instead of top
This commit is contained in:
parent
257bf2bf01
commit
5ffcbd0039
1 changed files with 1 additions and 1 deletions
|
@ -345,7 +345,7 @@ async function onNoteUpdated(noteData: NoteUpdatedEvent): Promise<void> {
|
|||
|
||||
replies.value.splice(found, 0, replyNote);
|
||||
if (found === 0) {
|
||||
directReplies.value.unshift(replyNote);
|
||||
directReplies.value.push(replyNote);
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in a new issue