|
|
|
@ -13,7 +13,7 @@ class AccountNav extends Component {
|
|
|
|
|
this.props.history.push(`/account/secure`)
|
|
|
|
|
}
|
|
|
|
|
render() {
|
|
|
|
|
let { basicInfo } = this.props
|
|
|
|
|
let { basicInfo, current_user } = this.props
|
|
|
|
|
// console.log(this.props);
|
|
|
|
|
const path = window.location.pathname
|
|
|
|
|
const isBasic = path.indexOf('profile') != -1 || path == "/account"
|
|
|
|
@ -78,7 +78,7 @@ class AccountNav extends Component {
|
|
|
|
|
<React.Fragment>
|
|
|
|
|
<div className="accountInfo">
|
|
|
|
|
<AccountImg src={basicInfo.avatar_url} {...this.props}></AccountImg>
|
|
|
|
|
<span className="name">{basicInfo.name}</span>
|
|
|
|
|
<span className="name">{basicInfo.name || (current_user ? current_user.login : '')}</span>
|
|
|
|
|
<span className="role">{basicInfo.technical_title}</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|