diff options
Diffstat (limited to 'ui/app/components/main_panel/user_section.js')
-rw-r--r-- | ui/app/components/main_panel/user_section.js | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/ui/app/components/main_panel/user_section.js b/ui/app/components/main_panel/user_section.js index 0b4ba136..acaea234 100644 --- a/ui/app/components/main_panel/user_section.js +++ b/ui/app/components/main_panel/user_section.js @@ -61,9 +61,17 @@ export default class UserSection extends React.Component { </SectionLayout> ) } else { + let address = null + if (this.props.account.userpart) { + address = this.props.account.address + } return ( <SectionLayout icon="user" className="wide-margin"> - <Login onLogin={this.props.onLogin} domain={this.props.account.domain} /> + <Login + onLogin={this.props.onLogin} + domain={this.props.account.domain} + address={address} + /> </SectionLayout> ) } |