Skip to content

Commit

Permalink
Fixed sender name
Browse files Browse the repository at this point in the history
  • Loading branch information
onemorejsdeveloper committed Aug 19, 2018
1 parent 77819ce commit 4e04855
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 4e04855

Please sign in to comment.