From e3da156162ce04d987935eeb4649f0aa51590cf2 Mon Sep 17 00:00:00 2001 From: dev92341 Date: Tue, 5 Feb 2019 06:12:14 -0800 Subject: [PATCH] Add option to hide features panel (About page) --- src/components/about/about.js | 3 +++ src/components/about/about.vue | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/about/about.js b/src/components/about/about.js index b4433b4e..b1ce3c7d 100644 --- a/src/components/about/about.js +++ b/src/components/about/about.js @@ -7,6 +7,9 @@ const About = { InstanceSpecificPanel, FeaturesPanel, TermsOfServicePanel + }, + computed: { + showFeaturesPanel () { return this.$store.state.config.showFeaturesPanel } } } diff --git a/src/components/about/about.vue b/src/components/about/about.vue index bf87e0b8..13dec87c 100644 --- a/src/components/about/about.vue +++ b/src/components/about/about.vue @@ -1,7 +1,7 @@