Clickable validator link from the account page
This commit is contained in:
parent
c337a4519e
commit
b27b421f23
@ -197,6 +197,15 @@
|
||||
:items="deleTable"
|
||||
stacked="sm"
|
||||
>
|
||||
<template #cell(validator)="data">
|
||||
<span>
|
||||
<router-link
|
||||
:to="`../staking/${data.value.address}`"
|
||||
>
|
||||
{{ data.value.moniker }}
|
||||
</router-link>
|
||||
</span>
|
||||
</template>
|
||||
<template #cell(action)="data">
|
||||
<!-- size -->
|
||||
<b-button-group
|
||||
@ -627,7 +636,10 @@ export default {
|
||||
this.delegations.forEach(e => {
|
||||
const reward = this.reward.rewards.find(r => r.validator_address === e.delegation.validator_address)
|
||||
re.push({
|
||||
validator: getStakingValidatorOperator(this.$http.config.chain_name, e.delegation.validator_address, 8),
|
||||
validator: {
|
||||
moniker: getStakingValidatorOperator(this.$http.config.chain_name, e.delegation.validator_address, 8),
|
||||
address: e.delegation.validator_address,
|
||||
},
|
||||
token: formatToken(e.balance, {}, decimal),
|
||||
reward: tokenFormatter(reward.reward, this.denoms),
|
||||
action: e.delegation.validator_address,
|
||||
|
Loading…
Reference in New Issue
Block a user