aboutsummaryrefslogtreecommitdiff
path: root/src/components/features_panel/features_panel.js
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2019-03-03 15:15:41 +0200
committerHenry Jameson <me@hjkos.com>2019-03-03 15:45:17 +0200
commit6184c88ac70b33e66a87222142344f693406bd87 (patch)
tree4923d127fd9eccedde1c0029d01a6e8e745b2e66 /src/components/features_panel/features_panel.js
parentcef0306428273d0786732e19e443d76a6b3e1ccd (diff)
Initial work on deprecating scopeModesEnabled in favor of minimalScopeMode
Diffstat (limited to 'src/components/features_panel/features_panel.js')
-rw-r--r--src/components/features_panel/features_panel.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/features_panel/features_panel.js b/src/components/features_panel/features_panel.js
index e0b7a118..0a7234cc 100644
--- a/src/components/features_panel/features_panel.js
+++ b/src/components/features_panel/features_panel.js
@@ -6,7 +6,7 @@ const FeaturesPanel = {
gopher: function () { return this.$store.state.instance.gopherAvailable },
whoToFollow: function () { return this.$store.state.instance.suggestionsEnabled },
mediaProxy: function () { return this.$store.state.instance.mediaProxyAvailable },
- scopeOptions: function () { return this.$store.state.instance.scopeOptionsEnabled },
+ scopeOptionsMinimal: function () { return this.$store.state.instance.scopeOptionsMinimal },
textlimit: function () { return this.$store.state.instance.textlimit }
}
}