From 72238abd4771d2f8f11faa0e0d6083aca67c6d91 Mon Sep 17 00:00:00 2001 From: ytian21 Date: Sat, 4 Jan 2020 15:12:30 -0500 Subject: [PATCH] Disable sorting --- src/App.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.ts b/src/App.ts index e5c6000..2b7957a 100644 --- a/src/App.ts +++ b/src/App.ts @@ -120,7 +120,7 @@ export default class App extends Vue }); // Sort by date - this.artworks.sort((a, b) => b.date.getTime() - a.date.getTime()); + // this.artworks.sort((a, b) => b.date.getTime() - a.date.getTime()); // Add home as a type if (this.config.types[0].type != 'Home')