Improve UI of uptime

This commit is contained in:
liangping 2022-03-18 15:35:28 +08:00
parent c2afbe584e
commit a8acd8e21f
2 changed files with 12 additions and 8 deletions

View File

@ -40,14 +40,15 @@
@change="pinValidator(`${chain}#${x.address}`)"
><span class="d-inline-block text-truncate font-weight-bold align-bottom">{{ index+1 }} {{ x.validator.moniker }}</span>
</b-form-checkbox>
<span
<b-badge
v-if="missing[x.address] && missing[x.address].missed_blocks_counter > 0"
v-b-tooltip.hover.v-danger
:title="`missed blocks:${missing[x.address].missed_blocks_counter}`"
variant="light-danger"
:title="`missed blocks: ${missing[x.address].missed_blocks_counter}`"
class="text-danger text-bolder"
>
{{ missing[x.address].missed_blocks_counter }}
</span>
</b-badge>
</div>
<div class="d-flex justify-content-between align-self-stretch flex-wrap">
<div
@ -72,7 +73,7 @@
<script>
import {
BRow, BCol, VBTooltip, BFormInput, BCard, BAlert, BFormCheckbox, BButton,
BRow, BCol, VBTooltip, BFormInput, BCard, BAlert, BFormCheckbox, BButton, BBadge,
} from 'bootstrap-vue'
import {
@ -88,6 +89,7 @@ export default {
BCard,
BAlert,
BButton,
BBadge,
BFormCheckbox,
},
directives: {

View File

@ -32,14 +32,15 @@
>
<span class="d-inline-block text-truncate font-weight-bold align-bottom"> {{ x.validator.moniker }} </span>
</b-form-checkbox>
<span
<b-badge
v-if="missing[x.address] && missing[x.address].missed_blocks_counter > 0"
v-b-tooltip.hover.v-danger
:title="`missed blocks:${missing[x.address].missed_blocks_counter}`"
variant="light-danger"
:title="`missed blocks: ${missing[x.address].missed_blocks_counter}`"
class="text-danger text-bolder"
>
{{ missing[x.address].missed_blocks_counter }}
</span>
</b-badge>
</div>
<div class="d-flex justify-content-between align-self-stretch flex-wrap">
<div
@ -64,7 +65,7 @@
<script>
import {
BRow, BCol, VBTooltip, BCard, BAlert, BCardTitle, BFormCheckbox,
BRow, BCol, VBTooltip, BCard, BAlert, BCardTitle, BFormCheckbox, BBadge,
} from 'bootstrap-vue'
import {
@ -75,6 +76,7 @@ import { Bech32, toHex } from '@cosmjs/encoding'
export default {
name: 'Blocks',
components: {
BBadge,
BRow,
BCol,
BCard,