diff --git a/src/renderer/components/Wallet/WalletTable.vue b/src/renderer/components/Wallet/WalletTable.vue index 7499e3837a..9125c5b66b 100644 --- a/src/renderer/components/Wallet/WalletTable.vue +++ b/src/renderer/components/Wallet/WalletTable.vue @@ -131,10 +131,6 @@ export default { }, props: { - isContactsTable: { - type: Boolean, - default: false - }, showVotedDelegates: { type: Boolean, default: false, @@ -178,13 +174,6 @@ export default { } ] - if (this.isContactsTable) { - const index = columns.findIndex(el => { - return el.field === 'balance' - }) - columns.splice(index, 1) - } - if (!this.showVotedDelegates) { const index = columns.findIndex(el => { return el.field === this.delegateName diff --git a/src/renderer/i18n/locales/en-US.js b/src/renderer/i18n/locales/en-US.js index dead231d7d..1c9cc3baaa 100644 --- a/src/renderer/i18n/locales/en-US.js +++ b/src/renderer/i18n/locales/en-US.js @@ -427,6 +427,7 @@ export default { CREATE_CONTACT: 'Create contact', IMPORT_CONTACT: 'Import contact', DELETE_CONTACT: 'Delete this contact', + INSTRUCTIONS: 'This page allows you to create contacts, making it easier for you to work with addresses by giving them an identifiable name', HEADER: 'My contacts', SHOW_CONTACT: 'Show contact' }, diff --git a/src/renderer/pages/Contact/ContactAll.vue b/src/renderer/pages/Contact/ContactAll.vue index d84a4541c7..053dd8fd33 100644 --- a/src/renderer/pages/Contact/ContactAll.vue +++ b/src/renderer/pages/Contact/ContactAll.vue @@ -1,27 +1,46 @@