remove empty
This commit is contained in:
parent
22ad78e23d
commit
7683cca288
@ -23,13 +23,15 @@
|
||||
style="color: #fff"
|
||||
class="mb-0"
|
||||
>
|
||||
{{ $t('walletAccountDetail.address') }} <feather-icon
|
||||
{{ $t('walletAccountDetail.address') }}
|
||||
<feather-icon
|
||||
icon="CopyIcon"
|
||||
size="18"
|
||||
@click="copy()"
|
||||
/>
|
||||
</h3>
|
||||
{{ address }} <b-badge
|
||||
{{ address }}
|
||||
<b-badge
|
||||
v-for="name in names"
|
||||
:key="name.name"
|
||||
v-b-tooltip.hover.top="name.provider"
|
||||
@ -692,10 +694,12 @@ export default {
|
||||
this.error = err
|
||||
})
|
||||
this.$http.resolveStarName(this.address).then(x => {
|
||||
if (x.data) {
|
||||
this.names.push({
|
||||
provider: 'Stargaze',
|
||||
name: x.data,
|
||||
})
|
||||
}
|
||||
})
|
||||
resolvePrimaryDomainByAddress(this.address).then(result => {
|
||||
if (result.isOk()) {
|
||||
|
Loading…
Reference in New Issue
Block a user