update: add router link accounts to validator and height

Signed-off-by: Salman Wahib <sxlmnwb@sxlzptprjkt.xyz>
This commit is contained in:
Salman Wahib 2023-04-25 02:14:19 +00:00
parent d73002a973
commit 4c3b2cdc77
3 changed files with 4 additions and 4 deletions

View File

@ -217,7 +217,7 @@ loadAccount(props.address)
</thead>
<tbody>
<tr v-for="v in delegations">
<td>{{ format.validatorFromBech32(v.delegation.validator_address) }} </td>
<td class="text-caption text-primary"><RouterLink :to="`/${chain}/staking/${v.delegation.validator_address}`">{{ format.validatorFromBech32(v.delegation.validator_address) }}</RouterLink></td>
<td>{{ format.formatToken(v.balance, true, "0,0.[00]") }} </td>
<td>{{ format.formatTokens(rewards?.rewards?.find(x => x.validator_address ===v.delegation.validator_address)?.reward) }} </td>
<td>
@ -238,7 +238,7 @@ loadAccount(props.address)
<tbody>
<div v-for="v in unbonding">
<tr>
<td>{{ format.validatorFromBech32(v.validator_address) }} </td>
<td class="text-caption text-primary"><RouterLink :to="`/${chain}/staking/${v.validator_address}`">{{ format.validatorFromBech32(v.validator_address) }}</RouterLink></td>
</tr>
<tr v-for="entry in v.entries">
<td>{{ entry.creation_height }}</td>

View File

@ -24,7 +24,7 @@ const format = useFormatter()
<VTable>
<thead>
<tr>
<th>Height</th><th>Hash</th><th>Proposor</th><th>Txs</th><th>Time</th>
<th>Height</th><th>Hash</th><th>Proposer</th><th>Txs</th><th>Time</th>
</tr>
</thead>
<tbody>

View File

@ -254,7 +254,7 @@ onMounted(()=> {
</thead>
<tbody>
<tr v-for="(item, i) in txs.tx_responses">
<td>{{ item.height }}</td>
<td class="text-sm text-primary"><RouterLink :to="`/${props.chain}/block/${item.height}`">{{ item.height }}</RouterLink></td>
<td class="text-truncate" style="max-width: 200px;">{{ item.txhash }}</td>
<td>{{ format.messages(item.tx.body.messages) }}</td>
<td width="150">{{ format.toDay(item.timestamp,'from') }}</td>