1
0
Fork 0
mirror of synced 2024-09-30 17:18:14 +13:00

Implement real sorting by app updated timestamp

This commit is contained in:
Andrew Kingston 2021-05-24 14:16:28 +01:00
parent c5d409d778
commit 1ebe75af35

View file

@ -51,12 +51,16 @@
}
return a.status === AppStatus.DEPLOYED ? -1 : 1
})
} else if (sortBy === "name") {
} else if (sortBy === "updated") {
return enrichedApps.sort((a, b) => {
const aUpdated = a.updatedAt || "9999"
const bUpdated = b.updatedAt || "9999"
return aUpdated < bUpdated ? 1 : -1
})
} else {
return enrichedApps.sort((a, b) => {
return a.name.toLowerCase() < b.name.toLowerCase() ? -1 : 1
})
} else {
return enrichedApps
}
}