Skip to content

Commit 868ac3b

Browse files
authored
Merge pull request #1729 from prachi00/feat-bug-dot
#1728 Dotscanner profile missing text
2 parents c97ca43 + ce37729 commit 868ac3b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

components/rmrk/Profile/ProfileLink.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,10 @@ const components = {
5858
export default class ProfileLink extends mixins(InlineMixin, PrefixMixin) {
5959
@Prop() public address!: string
6060
@Prop(Boolean) public showTwitter!: boolean
61-
public shortendId = shortAddress(this.address)
61+
62+
get shortendId(): string {
63+
return shortAddress(this.address)
64+
}
6265
}
6366
</script>
6467

0 commit comments

Comments
 (0)