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:
commit
abd7aa0ff6
|
@ -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 New Issue