mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-03 06:09:02 +02:00
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:
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user