fixed unbonding issue

This commit is contained in:
liangping 2022-08-24 22:01:23 +08:00
parent aec1bd0d9b
commit eea6e4361f

View File

@ -346,7 +346,9 @@ export default {
})
})
})
this.walletUnbonding = this.formatToken(newTokens)
if (newTokens.length > 0) {
this.walletUnbonding = this.formatToken(newTokens)
}
}
})
},