Merge pull request #2977 from overleaf/jpa-import-697

[ProjectController] fix the sorting of project entities for node v11+

GitOrigin-RevId: d4458aeaf83f610e36669050e664c902dbcce36e
This commit is contained in:
Jakob Ackermann 2020-07-07 14:55:57 +02:00 committed by Copybot
parent ae068781ca
commit 398d2deb07

View file

@ -362,7 +362,8 @@ const ProjectController = {
}
const entities = docs
.concat(files)
.sort((a, b) => a.path > b.path) // Sort by path ascending
// Sort by path ascending
.sort((a, b) => (a.path > b.path ? 1 : a.path < b.path ? -1 : 0))
.map(e => ({
path: e.path,
type: e.doc != null ? 'doc' : 'file'