diff options
| author | Henry Jameson <me@hjkos.com> | 2019-04-10 21:48:42 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2019-04-10 21:48:42 +0300 |
| commit | 262760d2586cac48da27cf7eb5389116d4023dfe (patch) | |
| tree | a4c9393df0da43409fcce9b1b41b4611f33cccb6 /src/components/features_panel/features_panel.vue | |
| parent | 6471bec0d962a13b272c2c55807492c86b859256 (diff) | |
revert unnecessary changes
Diffstat (limited to 'src/components/features_panel/features_panel.vue')
| -rw-r--r-- | src/components/features_panel/features_panel.vue | 22 |
1 files changed, 7 insertions, 15 deletions
diff --git a/src/components/features_panel/features_panel.vue b/src/components/features_panel/features_panel.vue index 3e5939a6..7a263e01 100644 --- a/src/components/features_panel/features_panel.vue +++ b/src/components/features_panel/features_panel.vue @@ -3,25 +3,17 @@ <div class="panel panel-default base01-background"> <div class="panel-heading timeline-heading base02-background base04"> <div class="title"> - {{ $t('features_panel.title') }} + {{$t('features_panel.title')}} </div> </div> <div class="panel-body features-panel"> <ul> - <li v-if="chat"> - {{ $t('features_panel.chat') }} - </li> - <li v-if="gopher"> - {{ $t('features_panel.gopher') }} - </li> - <li v-if="whoToFollow"> - {{ $t('features_panel.who_to_follow') }} - </li> - <li v-if="mediaProxy"> - {{ $t('features_panel.media_proxy') }} - </li> - <li>{{ $t('features_panel.scope_options') }}</li> - <li>{{ $t('features_panel.text_limit') }} = {{ textlimit }}</li> + <li v-if="chat">{{$t('features_panel.chat')}}</li> + <li v-if="gopher">{{$t('features_panel.gopher')}}</li> + <li v-if="whoToFollow">{{$t('features_panel.who_to_follow')}}</li> + <li v-if="mediaProxy">{{$t('features_panel.media_proxy')}}</li> + <li>{{$t('features_panel.scope_options')}}</li> + <li>{{$t('features_panel.text_limit')}} = {{textlimit}}</li> </ul> </div> </div> |
