diff options
-rw-r--r-- | public/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/app.js b/public/js/app.js index 34c6273..309625f 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -153,7 +153,7 @@ window.addEventListener("load", function() { this.response.forEach(_add) console.log("Screenings in " + screenings_by_date.size + " days: ") - for (let date of screenings_by_date.keys()) { + for (let date of Array.from(screenings_by_date.keys()).sort()) { console.log(date) let s = screenings_by_date.get(date) |