hide save button while loading on EditProfileDialog

pull/1512/head
Audric Ackermann 4 years ago
parent aac54e6045
commit 694be0cd55
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -126,13 +126,15 @@ export class EditProfileDialog extends React.Component<Props, State> {
}}
/>
) : (
<SessionButton
text={window.i18n('save')}
buttonType={SessionButtonType.BrandOutline}
buttonColor={SessionButtonColor.Green}
onClick={this.onClickOK}
disabled={this.state.loading}
/>
!this.state.loading && (
<SessionButton
text={window.i18n('save')}
buttonType={SessionButtonType.BrandOutline}
buttonColor={SessionButtonColor.Green}
onClick={this.onClickOK}
disabled={this.state.loading}
/>
)
)}
<div className="spacer-lg" />

Loading…
Cancel
Save