mirror of
https://github.com/bitwarden/browser
synced 2025-12-10 05:13:29 +00:00
fix(set-password-copy): [Auth/PM-25119] Update copy for flows where the user is setting and initial password (#16169)
Updates the copy on flows where the user is setting an initial password. Instead of saying "New master password" and "Confirm new master password", it should say "Master password" and "Confirm master password" for these flows.
This commit is contained in:
@@ -33,7 +33,12 @@
|
||||
|
||||
<div class="tw-mb-6">
|
||||
<bit-form-field [disableMargin]="true">
|
||||
<bit-label>{{ "newMasterPass" | i18n }}</bit-label>
|
||||
<bit-label>{{
|
||||
flow === InputPasswordFlow.SetInitialPasswordAccountRegistration ||
|
||||
flow === InputPasswordFlow.SetInitialPasswordAuthedUser
|
||||
? ("masterPassword" | i18n)
|
||||
: ("newMasterPass" | i18n)
|
||||
}}</bit-label>
|
||||
<input
|
||||
id="input-password-form_new-password"
|
||||
bitInput
|
||||
@@ -79,7 +84,12 @@
|
||||
</div>
|
||||
|
||||
<bit-form-field>
|
||||
<bit-label>{{ "confirmNewMasterPass" | i18n }}</bit-label>
|
||||
<bit-label>{{
|
||||
flow === InputPasswordFlow.SetInitialPasswordAccountRegistration ||
|
||||
flow === InputPasswordFlow.SetInitialPasswordAuthedUser
|
||||
? ("confirmMasterPassword" | i18n)
|
||||
: ("confirmNewMasterPass" | i18n)
|
||||
}}</bit-label>
|
||||
<input
|
||||
id="input-password-form_new-password-confirm"
|
||||
bitInput
|
||||
|
||||
Reference in New Issue
Block a user