summaryrefslogtreecommitdiffstats
path: root/src/views
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-11-14 12:24:24 +0100
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-11-14 12:24:24 +0100
commitc0b2f318d4a97cf75575ea84555f6a95318cf246 (patch)
treef09bcc3b353c8c062a5e0ffedca9edc008294edb /src/views
parentd54edac46c040e547f0b6ed65fae116fa1c5bd90 (diff)
Select nearest contact on deletion
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'src/views')
-rw-r--r--src/views/Contacts.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/views/Contacts.vue b/src/views/Contacts.vue
index dd95f4c2..0facdf61 100644
--- a/src/views/Contacts.vue
+++ b/src/views/Contacts.vue
@@ -36,7 +36,7 @@
<import-screen v-if="importState.stage !== 'default'" />
<template v-else>
<!-- contacts list -->
- <content-list :list="contactsList" :contacts="contacts" :loading="loading"
+ <contacts-list :list="contactsList" :contacts="contacts" :loading="loading"
:search-query="searchQuery" />
<!-- main contacts details -->
<contact-details :loading="loading" :contact-key="selectedContact" />
@@ -49,7 +49,7 @@
<script>
import SettingsSection from 'Components/SettingsSection'
-import ContentList from 'Components/ContentList'
+import ContactsList from 'Components/ContactsList'
import ContactDetails from 'Components/ContactDetails'
import ImportScreen from 'Components/ImportScreen'
@@ -63,7 +63,7 @@ export default {
components: {
SettingsSection,
- ContentList,
+ ContactsList,
ContactDetails,
ImportScreen
},