Fix broken i18n in Forgot & Change password (#7252)
This commit is contained in:
parent
11aa362eda
commit
5e77822bcc
3 changed files with 6 additions and 6 deletions
|
@ -315,9 +315,9 @@ export default class ForgotPassword extends React.Component<IProps, IState> {
|
|||
/>
|
||||
<PassphraseConfirmField
|
||||
name="reset_password_confirm"
|
||||
label={_t('Confirm')}
|
||||
labelRequired={_t("A new password must be entered.")}
|
||||
labelInvalid={_t("New passwords must match each other.")}
|
||||
label={_td('Confirm')}
|
||||
labelRequired={_td("A new password must be entered.")}
|
||||
labelInvalid={_td("New passwords must match each other.")}
|
||||
value={this.state.password2}
|
||||
password={this.state.password}
|
||||
fieldRef={field => this[ForgotPasswordField.PasswordConfirm] = field}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue