summaryrefslogtreecommitdiff
path: root/ui/app/components/main_panel/user_section.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/main_panel/user_section.js')
-rw-r--r--ui/app/components/main_panel/user_section.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/app/components/main_panel/user_section.js b/ui/app/components/main_panel/user_section.js
index 17e492d7..539d03df 100644
--- a/ui/app/components/main_panel/user_section.js
+++ b/ui/app/components/main_panel/user_section.js
@@ -69,7 +69,9 @@ export default class UserSection extends React.Component {
)
}
if (this.state.expanded) {
- body = <UserPasswordForm account={this.props.account} />
+ body = <div>
+ <UserPasswordForm account={this.props.account} />
+ </div>
}
if (this.state.loading) {
button = <Button disabled={true}><Spinner /></Button>