From 59dc2e9e12d21daea0f182e96e8af0e949099236 Mon Sep 17 00:00:00 2001 From: "Jain, Ankur" Date: Tue, 28 Jan 2025 11:46:05 -0500 Subject: [PATCH] Fix Tab Labels and also the display for product ids --- src/views/Accounts/Accounts.vue | 18 ++++---- src/views/Compliance/Compliance.vue | 6 +-- src/views/PKI/PKI.vue | 10 ++--- src/views/Upgrades/Upgrades.vue | 6 +-- src/views/Validators/Validators.vue | 6 +-- vue.config.js | 64 ----------------------------- 6 files changed, 23 insertions(+), 87 deletions(-) delete mode 100644 vue.config.js diff --git a/src/views/Accounts/Accounts.vue b/src/views/Accounts/Accounts.vue index e858989..29c33d1 100644 --- a/src/views/Accounts/Accounts.vue +++ b/src/views/Accounts/Accounts.vue @@ -82,7 +82,7 @@ export default { computed: { allProposedAccounts() { const pendingAccountsArray = this.$store.getters['zigbeealliance.distributedcomplianceledger.dclauth/getPendingAccountAll'](); - // Add the hex value to the vendor ID to all the accounts + // Add the hex value to the vendor ID to the accounts pendingAccountsArray?.pendingAccount?.forEach((pendingAccount) => { pendingAccount.account.vendorIDHex = this.addHexValueToVendorID(pendingAccount.account.vendorID); }); @@ -96,7 +96,7 @@ export default { allActiveAccounts() { const allAccountsArray = this.$store.getters['zigbeealliance.distributedcomplianceledger.dclauth/getAccountAll'](); - // Add the hex value to the vendor ID to all the accounts + // Add the hex value to the vendor ID to the accounts allAccountsArray?.account?.forEach((account) => { account.vendorIDHex = this.addHexValueToVendorID(account.vendorID); }); @@ -125,21 +125,21 @@ export default { }, created: function () { - // Get all the accounts + // Get the accounts this.$store.dispatch('zigbeealliance.distributedcomplianceledger.dclauth/QueryAccountAll', { options: { subscribe: true, all: true } }); - // Get all the pending accounts + // Get the pending accounts this.$store.dispatch('zigbeealliance.distributedcomplianceledger.dclauth/QueryPendingAccountAll', { options: { subscribe: true, all: true } }); - // Get all the revoked accounts + // Get the revoked accounts this.$store.dispatch('zigbeealliance.distributedcomplianceledger.dclauth/QueryPendingAccountRevocationAll', { options: { subscribe: true, @@ -153,7 +153,7 @@ export default {