Skip to content
This repository has been archived by the owner on Jan 6, 2024. It is now read-only.

Commit

Permalink
Fix displaying alias name in search matches
Browse files Browse the repository at this point in the history
  • Loading branch information
MrXyfir committed Apr 16, 2019
1 parent 72dc81f commit b39b144
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/components/panel/aliases/Matches.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ export const AliasMatches = () => (
`Created ${moment.unix(alias.created).fromNow()}`
}
category={CATEGORIES.find(c => c.name == 'Aliases')}
name={(alias: Ptorx.AliasList[0]) => alias.fullAddress}
name={(alias: Ptorx.AliasList[0]) => `${alias.fullAddress}${alias.name}`}
/>
);

0 comments on commit b39b144

Please sign in to comment.