mirror of
https://github.com/element-hq/element-web
synced 2024-11-26 11:15:53 +03:00
Move country dropdown inside field in Settings
This updates the Settings phone input to match the new styling used on auth flows. Fixes https://github.com/vector-im/riot-web/issues/9049
This commit is contained in:
parent
5120ff83be
commit
13957bb5e7
1 changed files with 10 additions and 8 deletions
|
@ -224,21 +224,23 @@ export default class PhoneNumbers extends React.Component {
|
|||
);
|
||||
}
|
||||
|
||||
const phoneCountry = <CountryDropdown onOptionChange={this._onCountryChanged}
|
||||
className="mx_PhoneNumbers_country"
|
||||
value={this.state.phoneCountry}
|
||||
disabled={this.state.verifying}
|
||||
isSmall={true}
|
||||
showPrefix={true}
|
||||
/>;
|
||||
|
||||
return (
|
||||
<div className="mx_PhoneNumbers">
|
||||
{existingPhoneElements}
|
||||
<form onSubmit={this._onAddClick} autoComplete={false}
|
||||
noValidate={true} className="mx_PhoneNumbers_new">
|
||||
<div className="mx_PhoneNumbers_input">
|
||||
<CountryDropdown onOptionChange={this._onCountryChanged}
|
||||
className="mx_PhoneNumbers_country"
|
||||
value={this.state.phoneCountry}
|
||||
disabled={this.state.verifying}
|
||||
isSmall={true}
|
||||
showPrefix={true}
|
||||
/>
|
||||
<Field id="newPhoneNumber" ref="newPhoneNumber" label={_t("Phone Number")}
|
||||
type="text" autoComplete="off" disabled={this.state.verifying} />
|
||||
type="text" autoComplete="off" disabled={this.state.verifying}
|
||||
prefix={phoneCountry} />
|
||||
</div>
|
||||
{addVerifySection}
|
||||
</form>
|
||||
|
|
Loading…
Reference in a new issue