mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 05:04:57 +08:00
Remove obsolete class name and declarations on General
user settings tab (#10659)
* Remove an obsolete class name: `mx_EmailAddresses_new` The class name was added byaa7afe819f
for an initial implementation and became obsolete thanks to1090b7d912
. Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * Remove obsolete declarations: `mx_ExistingPhoneNumber_delete` The declarations have been obsolete since11f2b4320d
. Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * Remove obsolete declarations: `mx_ExistingEmailAddress_delete` The declarations have also been deprecated by11f2b4320d
. Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> --------- Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com>
This commit is contained in:
parent
0db40e327c
commit
869856df2d
@ -21,12 +21,6 @@ limitations under the License.
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.mx_ExistingEmailAddress_delete {
|
||||
margin-right: 5px;
|
||||
cursor: pointer;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.mx_ExistingEmailAddress_email,
|
||||
.mx_ExistingEmailAddress_promptText {
|
||||
flex: 1;
|
||||
|
@ -21,12 +21,6 @@ limitations under the License.
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.mx_ExistingPhoneNumber_delete {
|
||||
margin-right: 5px;
|
||||
cursor: pointer;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.mx_ExistingPhoneNumber_address,
|
||||
.mx_ExistingPhoneNumber_promptText {
|
||||
flex: 1;
|
||||
|
@ -276,7 +276,7 @@ export default class EmailAddresses extends React.Component<IProps, IState> {
|
||||
return (
|
||||
<div className="mx_EmailAddresses">
|
||||
{existingEmailElements}
|
||||
<form onSubmit={this.onAddClick} autoComplete="off" noValidate={true} className="mx_EmailAddresses_new">
|
||||
<form onSubmit={this.onAddClick} autoComplete="off" noValidate={true}>
|
||||
<Field
|
||||
type="text"
|
||||
label={_t("Email Address")}
|
||||
|
Loading…
Reference in New Issue
Block a user