diff --git a/src/components/DataExportSection.vue b/src/components/DataExportSection.vue
index 737f8f2eba..16dd992be4 100644
--- a/src/components/DataExportSection.vue
+++ b/src/components/DataExportSection.vue
@@ -10,7 +10,7 @@ messages * - Conditional UI based on platform capabilities * * @component *
-
Data Export
+
Data Management
- {{ isExporting ? "Exporting..." : "Download Contacts" }}
+ {{ isExporting ? "Exporting..." : "Export Contacts" }}
+
+
+
diff --git a/src/utils/PlatformServiceMixin.ts b/src/utils/PlatformServiceMixin.ts
index cc64937370..32424cf3a9 100644
--- a/src/utils/PlatformServiceMixin.ts
+++ b/src/utils/PlatformServiceMixin.ts
@@ -1367,6 +1367,9 @@ export const PlatformServiceMixin = {
contact.profileImageUrl !== undefined
? contact.profileImageUrl
: null,
+ notes: contact.notes !== undefined ? contact.notes : null,
+ iViewContent:
+ contact.iViewContent !== undefined ? contact.iViewContent : null,
contactMethods:
contact.contactMethods !== undefined
? Array.isArray(contact.contactMethods)
@@ -1377,8 +1380,8 @@ export const PlatformServiceMixin = {
await this.$dbExec(
`INSERT OR REPLACE INTO contacts
- (did, name, publicKeyBase64, seesMe, registered, nextPubKeyHashB64, profileImageUrl, contactMethods)
- VALUES (?, ?, ?, ?, ?, ?, ?, ?)`,
+ (did, name, publicKeyBase64, seesMe, registered, nextPubKeyHashB64, profileImageUrl, notes, iViewContent, contactMethods)
+ VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)`,
[
safeContact.did,
safeContact.name,
@@ -1387,6 +1390,8 @@ export const PlatformServiceMixin = {
safeContact.registered,
safeContact.nextPubKeyHashB64,
safeContact.profileImageUrl,
+ safeContact.notes,
+ safeContact.iViewContent,
safeContact.contactMethods,
],
);
diff --git a/src/views/AccountViewView.vue b/src/views/AccountViewView.vue
index 9b7efd3ed7..12ff331ea0 100644
--- a/src/views/AccountViewView.vue
+++ b/src/views/AccountViewView.vue
@@ -375,45 +375,6 @@
Switch Identifier
-
-