summaryrefslogtreecommitdiffstats
path: root/src/views
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-11-13 17:42:52 +0100
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-11-13 17:46:17 +0100
commit5f5801e11eae0ad190a08a59d12db433935d097c (patch)
tree1b35d57a3dc1a3800a4b3720cfe09527caf8d9ad /src/views
parent91d64916333490b70c636a5a25627e8d6b39db5d (diff)
Select the fullname field if it is still set to New contact
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'src/views')
-rw-r--r--src/views/Contacts.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/views/Contacts.vue b/src/views/Contacts.vue
index 14395b89..dd95f4c2 100644
--- a/src/views/Contacts.vue
+++ b/src/views/Contacts.vue
@@ -108,7 +108,7 @@ export default {
importState() {
return this.$store.getters.getImportState
},
-
+
// first enabled addressbook of the list
defaultAddressbook() {
return this.addressbooks.find(addressbook => !addressbook.readOnly && addressbook.enabled)
@@ -239,7 +239,7 @@ export default {
methods: {
newContact() {
let contact = new Contact('BEGIN:VCARD\nVERSION:4.0\nEND:VCARD', this.defaultAddressbook)
- contact.fullName = 'New contact'
+ contact.fullName = t('contacts', 'New contact')
// itterate over all properties (filter is not usable on objects and we need the key of the property)
for (let name in rfcProps.properties) {
if (rfcProps.properties[name].default) {