forked from AkkomaGang/akkoma-fe
Merge branch 'hotifx-convos' into 'develop'
Fix ordering in convos See merge request pleroma/pleroma-fe!477
This commit is contained in:
commit
8197c77f75
1 changed files with 2 additions and 2 deletions
|
@ -7,13 +7,13 @@ const sortById = (a, b) => {
|
|||
const isSeqA = !Number.isNaN(seqA)
|
||||
const isSeqB = !Number.isNaN(seqB)
|
||||
if (isSeqA && isSeqB) {
|
||||
return seqA > seqB ? -1 : 1
|
||||
return seqA < seqB ? -1 : 1
|
||||
} else if (isSeqA && !isSeqB) {
|
||||
return 1
|
||||
} else if (!isSeqA && isSeqB) {
|
||||
return -1
|
||||
} else {
|
||||
return a.id > b.id ? -1 : 1
|
||||
return a.id < b.id ? -1 : 1
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue