Implement real sorting by app updated timestamp
This commit is contained in:
parent
c5d409d778
commit
1ebe75af35
|
@ -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
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue