mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
Fix failure to render newly verified phone number and nested forms
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
d7a1116880
commit
648527e650
1 changed files with 3 additions and 2 deletions
|
@ -176,6 +176,7 @@ export default class PhoneNumbers extends React.Component {
|
|||
|
||||
this.setState({continueDisabled: true});
|
||||
const token = this.state.newPhoneNumberCode;
|
||||
const address = this.state.verifyMsisdn;
|
||||
this.state.addTask.haveMsisdnToken(token).then(() => {
|
||||
this.setState({
|
||||
addTask: null,
|
||||
|
@ -188,7 +189,7 @@ export default class PhoneNumbers extends React.Component {
|
|||
});
|
||||
const msisdns = [
|
||||
...this.props.msisdns,
|
||||
{ address: this.state.verifyMsisdn, medium: "msisdn" },
|
||||
{ address, medium: "msisdn" },
|
||||
];
|
||||
this.props.onMsisdnsChange(msisdns);
|
||||
}).catch((err) => {
|
||||
|
@ -272,8 +273,8 @@ export default class PhoneNumbers extends React.Component {
|
|||
onChange={this._onChangeNewPhoneNumber}
|
||||
/>
|
||||
</div>
|
||||
{addVerifySection}
|
||||
</form>
|
||||
{addVerifySection}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue