diff --git a/src/views/Uptime.vue b/src/views/Uptime.vue index a2781217..7ba483f6 100644 --- a/src/views/Uptime.vue +++ b/src/views/Uptime.vue @@ -83,6 +83,7 @@ export default { computed: { uptime() { const vals = this.query ? this.validators.filter(x => String(x.description.moniker).indexOf(this.query) > -1) : this.validators + vals.sort((a, b) => b.delegator_shares - a.delegator_shares) return vals.map(x => ({ validator: x.description, address: consensusPubkeyToHexAddress(x.consensus_pubkey),