Skip to content

Commit

Permalink
Merge pull request #122 from Adamant-im/sender-name-bug
Browse files Browse the repository at this point in the history
Fixed sender name
  • Loading branch information
zyuhel authored Aug 19, 2018
2 parents 77819ce + 4e04855 commit 61245e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/transactions/AdmTransaction.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default {
return this.$t('transaction.me')
}
let result = this.$store.getters['partners/displayName'](address)
if (result !== '') {
if (result !== '' && result !== undefined) {
result += ' (' + address + ')'
} else {
result = address
Expand Down

0 comments on commit 61245e4

Please sign in to comment.