display new direct replies at end instead of top

This commit is contained in:
Freeplay 2023-05-08 19:41:56 -04:00
parent 257bf2bf01
commit 5ffcbd0039

View file

@ -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;