This commit is contained in:
mgabdev
2020-04-17 01:35:46 -04:00
parent 35852e7fee
commit 4d7aee59c9
37 changed files with 568 additions and 319 deletions

View File

@@ -61,7 +61,8 @@ class ProfilePage extends ImmutablePureComponent {
params: { username },
} = this.props
const title = !!account ? account.get('display_name') : username
const name = !!account ? account.get('display_name_html') : ''
console.log("name:", name, account)
return (
<ProfileLayout
@@ -75,7 +76,7 @@ class ProfilePage extends ImmutablePureComponent {
</Fragment>
)}
>
<PageTitle path={title} />
<PageTitle path={`${name} (@${username})`} />
{
!account && <ColumnIndicator type='loading' />
}