Merge pull request 'display new direct replies at end instead of top' (#10071) from Freeplay/calckey:direct-reply-thing into develop

Reviewed-on: https://codeberg.org/calckey/calckey/pulls/10071
This commit is contained in:
Kainoa Kanter 2023-05-09 00:48:58 +00:00
commit abd7aa0ff6

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;