summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGottfried Mayer <github@gma.name>2023-10-09 21:03:57 +0200
committerGitHub <noreply@github.com>2023-10-09 21:03:57 +0200
commitd1b7efb92c6dc1bd328f47dd143049e2aab9b68d (patch)
tree0132f726564986759d69a3cc54f05fa127d7d06c
parent9854dd89cc575ebd23206831ceed3e31c36038d3 (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"