Skip to content
This repository has been archived by the owner on Mar 23, 2023. It is now read-only.

Commit

Permalink
fix: dashboard show transaction (#1716)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbarnsley authored Feb 26, 2020
1 parent 6399cb6 commit 4f89531
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ export default {
},
amountTooltip () {
const walletAddress = this.transaction.walletAddress || this.wallet_fromRoute.address
const walletAddress = this.transaction.walletAddress || (this.wallet_fromRoute ? this.wallet_fromRoute.address : null)
if (!walletAddress || this.transaction.sender !== walletAddress) {
return null
} else if (this.transaction.typeGroup === TRANSACTION_GROUPS.MAGISTRATE) {
Expand Down

0 comments on commit 4f89531

Please sign in to comment.