remove formatting options

This commit is contained in:
hakabahitoyo 2018-09-04 14:50:02 +09:00
parent 49ab19c342
commit 8b94ea28ec
3 changed files with 0 additions and 4 deletions

View file

@ -7,7 +7,6 @@ const FeaturesPanel = {
whoToFollow: function () { return this.$store.state.config.suggestionsEnabled },
mediaProxy: function () { return this.$store.state.config.mediaProxyAvailable },
scopeOptions: function () { return this.$store.state.config.scopeOptionsEnabled },
formattingOptions: function () { return this.$store.state.config.formattingOptionsEnabled },
textlimit: function () { return this.$store.state.config.textlimit }
}
}

View file

@ -13,7 +13,6 @@
<li v-if="whoToFollow">{{$t('features_panel.who_to_follow')}}</li>
<li v-if="mediaProxy">{{$t('features_panel.media_proxy')}}</li>
<li v-if="scopeOptions">{{$t('features_panel.scope_options')}}</li>
<li v-if="formattingOptions">{{$t('features_panel.formatting_options')}}</li>
<li>{{$t('features_panel.text_limit')}} = {{textlimit}}</li>
</ul>
</div>