update
This commit is contained in:
parent
07ef43c7b5
commit
049e2397b1
3 changed files with 12 additions and 6 deletions
|
@ -1,5 +1,10 @@
|
|||
const FeaturesPanel = {
|
||||
computed: {
|
||||
mediaProxy: function () { return this.$store.state.config.mediaProxyAvailable },
|
||||
whoToFollow: function () { return this.$store.state.config.suggestionsEnabled },
|
||||
scopeOptions: function () { return this.$store.state.config.scopeOptionsEnabled },
|
||||
formattingOptions: function () { return this.$store.state.config.formattingOptionsEnabled },
|
||||
textlimit: function () { return this.$store.state.config.textlimit }
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -8,12 +8,11 @@
|
|||
</div>
|
||||
<div class="panel-body features">
|
||||
<ul>
|
||||
<li>Media proxy</li>
|
||||
<li>Local chat</li>
|
||||
<li>Who to follow</li>
|
||||
<li>Scope options</li>
|
||||
<li>Formatting options</li>
|
||||
<li>Text limit=</li>
|
||||
<li v-if="mediaProxy">Media proxy</li>
|
||||
<li v-if="whoToFollow">Who to follow</li>
|
||||
<li v-if="scopeOptions">Scope options</li>
|
||||
<li v-if="formattingOptions">Formatting options</li>
|
||||
<li>Text limit={{textlimit}}</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue