summaryrefslogtreecommitdiffstats
path: root/src/components/AppNavigation/SettingsSection.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/AppNavigation/SettingsSection.vue')
-rw-r--r--src/components/AppNavigation/SettingsSection.vue7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/components/AppNavigation/SettingsSection.vue b/src/components/AppNavigation/SettingsSection.vue
index 93b50e14..3939c5d9 100644
--- a/src/components/AppNavigation/SettingsSection.vue
+++ b/src/components/AppNavigation/SettingsSection.vue
@@ -23,7 +23,8 @@
<template>
<div>
- <div v-if="allowSocialSync">
+ <SettingsSortContacts class="settings-section" />
+ <div v-if="allowSocialSync" class="social-sync__list-entry">
<input
id="socialSyncToggle"
class="checkbox"
@@ -33,11 +34,13 @@
<label for="socialSyncToggle">{{ t('contacts', 'Update avatars from social media') }}</label>
<em for="socialSyncToggle">{{ t('contacts', '(refreshed once per week)') }}</em>
</div>
+ <div class="settings-addressbook-list__header">
+ <span>{{ t('contacts', 'Address books') }}</span>
+ </div>
<ul id="addressbook-list">
<SettingsAddressbook v-for="addressbook in addressbooks" :key="addressbook.id" :addressbook="addressbook" />
</ul>
<SettingsNewAddressbook :addressbooks="addressbooks" />
- <SettingsSortContacts class="settings-section" />
<SettingsImportContacts :addressbooks="addressbooks"
class="settings-section"
@clicked="onClickImport"