diff options
| author | Henry Jameson <me@hjkos.com> | 2019-03-03 15:15:41 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2019-03-03 15:45:17 +0200 |
| commit | 6184c88ac70b33e66a87222142344f693406bd87 (patch) | |
| tree | 4923d127fd9eccedde1c0029d01a6e8e745b2e66 /src/components/user_settings/user_settings.js | |
| parent | cef0306428273d0786732e19e443d76a6b3e1ccd (diff) | |
Initial work on deprecating scopeModesEnabled in favor of minimalScopeMode
Diffstat (limited to 'src/components/user_settings/user_settings.js')
| -rw-r--r-- | src/components/user_settings/user_settings.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/components/user_settings/user_settings.js b/src/components/user_settings/user_settings.js index d6972737..1911ab23 100644 --- a/src/components/user_settings/user_settings.js +++ b/src/components/user_settings/user_settings.js @@ -4,6 +4,7 @@ import get from 'lodash/get' import TabSwitcher from '../tab_switcher/tab_switcher.js' import ImageCropper from '../image_cropper/image_cropper.vue' import StyleSwitcher from '../style_switcher/style_switcher.vue' +import ScopeSelector from '../scope_selector/scope_selector.vue' import fileSizeFormatService from '../../services/file_size_format/file_size_format.js' import BlockCard from '../block_card/block_card.vue' import MuteCard from '../mute_card/mute_card.vue' @@ -66,6 +67,7 @@ const UserSettings = { }, components: { StyleSwitcher, + ScopeSelector, TabSwitcher, ImageCropper, BlockList, @@ -78,8 +80,8 @@ const UserSettings = { pleromaBackend () { return this.$store.state.instance.pleromaBackend }, - scopeOptionsEnabled () { - return this.$store.state.instance.scopeOptionsEnabled + scopeOptionsMinimal () { + return this.$store.state.instance.scopeOptionsMinimal }, vis () { return { |
