diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2022-07-15 10:29:47 +0300 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2022-07-15 10:29:47 +0300 |
| commit | a6cc6f38c471fac7a6cc3ea9965e5355a2bc9a3a (patch) | |
| tree | a16c61802182dfced87281a44c4a13855aa7598b | |
| parent | 3460a94ac661a513775cb01fbf9ad7a01fa779f6 (diff) | |
Remove manual sorting by title
| -rw-r--r-- | build.js | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -52,8 +52,7 @@ const galleryViews = galleriesView["galleries"] columns,
display_title,
};
- })
- .sort((a, b) => a["title"].localeCompare(b["title"]));
+ });
const contactInfoJson = fs.readFileSync(CONTACT_INFO_PATH, "utf-8")
const contactInfoView = JSON.parse(contactInfoJson);
|
