diff options
| author | Henry Jameson <me@hjkos.com> | 2023-03-12 17:28:14 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2023-03-12 17:28:14 +0200 |
| commit | 55ea6df40b7e2cfe2b1b5bde33204d4c03e54a12 (patch) | |
| tree | ac0d846ca426d1e279bd02f56d36f7e15439d233 /src/components/settings_modal/tabs/profile_tab.vue | |
| parent | 6a7b182af11af6c50439c62bc5ee37cc5960810e (diff) | |
lint
Diffstat (limited to 'src/components/settings_modal/tabs/profile_tab.vue')
| -rw-r--r-- | src/components/settings_modal/tabs/profile_tab.vue | 34 |
1 files changed, 26 insertions, 8 deletions
diff --git a/src/components/settings_modal/tabs/profile_tab.vue b/src/components/settings_modal/tabs/profile_tab.vue index 74652990..1cc850cb 100644 --- a/src/components/settings_modal/tabs/profile_tab.vue +++ b/src/components/settings_modal/tabs/profile_tab.vue @@ -254,27 +254,42 @@ <h2>{{ $t('settings.account_privacy') }}</h2> <ul class="setting-list"> <li> - <BooleanSetting source="profile" path="locked"> + <BooleanSetting + source="profile" + path="locked" + > {{ $t('settings.lock_account_description') }} </BooleanSetting> </li> <li> - <BooleanSetting source="profile" path="discoverable"> + <BooleanSetting + source="profile" + path="discoverable" + > {{ $t('settings.discoverable') }} </BooleanSetting> </li> <li> - <BooleanSetting source="profile" path="allowFollowingMove"> + <BooleanSetting + source="profile" + path="allowFollowingMove" + > {{ $t('settings.allow_following_move') }} </BooleanSetting> </li> <li> - <BooleanSetting source="profile" path="hideFavorites"> + <BooleanSetting + source="profile" + path="hideFavorites" + > {{ $t('settings.hide_favorites_description') }} </BooleanSetting> </li> <li> - <BooleanSetting source="profile" path="hideFollowers"> + <BooleanSetting + source="profile" + path="hideFollowers" + > {{ $t('settings.hide_followers_description') }} </BooleanSetting> <ul class="setting-list suboptions"> @@ -282,7 +297,7 @@ <BooleanSetting source="profile" path="hideFollowersCount" - parentPath="hideFollowers" + parent-path="hideFollowers" > {{ $t('settings.hide_followers_count_description') }} </BooleanSetting> @@ -290,7 +305,10 @@ </ul> </li> <li> - <BooleanSetting source="profile" path="hideFollows"> + <BooleanSetting + source="profile" + path="hideFollows" + > {{ $t('settings.hide_follows_description') }} </BooleanSetting> <ul class="setting-list suboptions"> @@ -298,7 +316,7 @@ <BooleanSetting source="profile" path="hideFollowsCount" - parentPath="hideFollows" + parent-path="hideFollows" > {{ $t('settings.hide_follows_count_description') }} </BooleanSetting> |
