summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGottfried Mayer <github@gma.name>2023-10-09 21:03:57 +0200
committerbackportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com>2023-10-17 13:04:52 +0000
commit50f26b8ecb1923951eb1231789feefcd3c08fb7d (patch)
tree2620fa16adf4a834ed3c7b571f7b1e06c6628c14
parent3040b81197beb09c62c6b59ddee40305f410e8a5 (diff)
fix v-model of address book select control
Signed-off-by: Gottfried Mayer <github@gma.name>
-rw-r--r--src/components/AppNavigation/Settings/SettingsImportContacts.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/AppNavigation/Settings/SettingsImportContacts.vue b/src/components/AppNavigation/Settings/SettingsImportContacts.vue
index 94ea79d7..eb28dd23 100644
--- a/src/components/AppNavigation/Settings/SettingsImportContacts.vue
+++ b/src/components/AppNavigation/Settings/SettingsImportContacts.vue
@@ -38,7 +38,7 @@
<h2>{{ t('contacts', 'Import contacts') }}</h2>
<NcSelect v-if="!isSingleAddressbook"
id="select-addressbook"
- v-model="selectedAddressbook"
+ v-model="importDestination"
:allow-empty="false"
:options="options"
:disabled="isSingleAddressbook || isImporting"