From 8735237626fd8312ac6ffc903f1ad5af8286bf97 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Mon, 27 Apr 2020 03:25:42 -0400 Subject: [PATCH] [+] Add default case --- src/components/app/app.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/app/app.ts b/src/components/app/app.ts index 79b2895..f8a76b5 100644 --- a/src/components/app/app.ts +++ b/src/components/app/app.ts @@ -72,6 +72,11 @@ export default class App extends Vue this.staticPage = 'info'; } + // Default config + if (!this.$cookies.isKey('show-rating')) + { + this.showRating = Constants.CURRENT_TERM == 3; + } } /**