diff --git a/frontend/src/storage.js b/frontend/src/storage.js index c95d93a6..31a1f72d 100644 --- a/frontend/src/storage.js +++ b/frontend/src/storage.js @@ -32,7 +32,11 @@ class Storage { fs.push(JSON.parse(this.engine.getItem(k))); // parse or whatever else } } - return fs; + return fs.sort((file1, file2) => { + const creationDate1 = new Date(file1.creationDate); + const creationDate2 = new Date(file2.creationDate); + return creationDate1 - creationDate2; + }); } get numFiles() {