Fix indentation in PhoneNumbers.js
This commit is contained in:
parent
5a648ecfe4
commit
cff3c94858
1 changed files with 16 additions and 16 deletions
|
@ -205,22 +205,22 @@ export default class PhoneNumbers extends React.Component {
|
||||||
if (this.state.verifying) {
|
if (this.state.verifying) {
|
||||||
const msisdn = this.state.verifyMsisdn;
|
const msisdn = this.state.verifyMsisdn;
|
||||||
addVerifySection = (
|
addVerifySection = (
|
||||||
<div>
|
<div>
|
||||||
<div>
|
<div>
|
||||||
{_t("A text message has been sent to +%(msisdn)s. " +
|
{_t("A text message has been sent to +%(msisdn)s. " +
|
||||||
"Please enter the verification code it contains", {msisdn: msisdn})}
|
"Please enter the verification code it contains", { msisdn: msisdn })}
|
||||||
<br />
|
<br />
|
||||||
{this.state.verifyError}
|
{this.state.verifyError}
|
||||||
</div>
|
</div>
|
||||||
<form onSubmit={this._onContinueClick} autoComplete={false} noValidate={true}>
|
<form onSubmit={this._onContinueClick} autoComplete={false} noValidate={true}>
|
||||||
<Field id="newPhoneNumberCode" ref="newPhoneNumberCode" label={_t("Verification code")}
|
<Field id="newPhoneNumberCode" ref="newPhoneNumberCode" label={_t("Verification code")}
|
||||||
type="text" autoComplete="off" disabled={this.state.continueDisabled} />
|
type="text" autoComplete="off" disabled={this.state.continueDisabled} />
|
||||||
<AccessibleButton onClick={this._onContinueClick} kind="primary"
|
<AccessibleButton onClick={this._onContinueClick} kind="primary"
|
||||||
disabled={this.state.continueDisabled}>
|
disabled={this.state.continueDisabled}>
|
||||||
{_t("Continue")}
|
{_t("Continue")}
|
||||||
</AccessibleButton>
|
</AccessibleButton>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue