diff options
| author | Ariadne Conill <ariadne@dereferenced.org> | 2019-11-11 14:25:38 -0600 |
|---|---|---|
| committer | Ariadne Conill <ariadne@dereferenced.org> | 2019-11-11 14:28:10 -0600 |
| commit | cb5f73148a2dc9341d16326ed606d74e818fb61d (patch) | |
| tree | e04c679dbb8ac9fa37b6fb1f5c8c88674cb91a13 /src/App.js | |
| parent | 1f9674350cdf7455fe5540d377eb327edf1336ce (diff) | |
app: search API is not available in private mode so disable it
Diffstat (limited to 'src/App.js')
| -rw-r--r-- | src/App.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -97,7 +97,8 @@ export default { this.$store.state.instance.instanceSpecificPanelContent }, showFeaturesPanel () { return this.$store.state.instance.showFeaturesPanel }, - isMobileLayout () { return this.$store.state.interface.mobileLayout } + isMobileLayout () { return this.$store.state.interface.mobileLayout }, + privateMode () { return this.$store.state.instance.private } }, methods: { scrollToTop () { |
