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
1 changed files with 7 additions and 3 deletions

View File

@ -51,12 +51,16 @@
} }
return a.status === AppStatus.DEPLOYED ? -1 : 1 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 enrichedApps.sort((a, b) => {
return a.name.toLowerCase() < b.name.toLowerCase() ? -1 : 1 return a.name.toLowerCase() < b.name.toLowerCase() ? -1 : 1
}) })
} else {
return enrichedApps
} }
} }