mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 15:23:33 +00:00
Fix build errors for strict templates (#4134)
This commit is contained in:
@@ -78,7 +78,7 @@
|
||||
<input
|
||||
id="login_input_master-password"
|
||||
bitInput
|
||||
type="{{ showPassword ? 'text' : 'password' }}"
|
||||
[type]="showPassword ? 'text' : 'password'"
|
||||
formControlName="masterPassword"
|
||||
appAutofocus
|
||||
/>
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
<input
|
||||
id="register-form_input_master-password"
|
||||
bitInput
|
||||
type="{{ showPassword ? 'text' : 'password' }}"
|
||||
[type]="showPassword ? 'text' : 'password'"
|
||||
formControlName="masterPassword"
|
||||
/>
|
||||
<button type="button" bitSuffix bitButton (click)="togglePassword()">
|
||||
@@ -65,7 +65,7 @@
|
||||
<input
|
||||
id="register-form_input_confirm-master-password"
|
||||
bitInput
|
||||
type="{{ showPassword ? 'text' : 'password' }}"
|
||||
[type]="showPassword ? 'text' : 'password'"
|
||||
formControlName="confirmMasterPassword"
|
||||
/>
|
||||
<button type="button" bitSuffix bitButton (click)="togglePassword()">
|
||||
|
||||
@@ -89,7 +89,7 @@
|
||||
<bit-label>{{ "filePassword" | i18n }}</bit-label>
|
||||
<input
|
||||
bitInput
|
||||
type="{{ showFilePassword ? 'text' : 'password' }}"
|
||||
[type]="showFilePassword ? 'text' : 'password'"
|
||||
id="filePassword"
|
||||
formControlName="filePassword"
|
||||
name="password"
|
||||
@@ -123,7 +123,7 @@
|
||||
<bit-label>{{ "confirmFilePassword" | i18n }}</bit-label>
|
||||
<input
|
||||
bitInput
|
||||
type="{{ showConfirmFilePassword ? 'text' : 'password' }}"
|
||||
[type]="showConfirmFilePassword ? 'text' : 'password'"
|
||||
id="confirmFilePassword"
|
||||
formControlName="confirmFilePassword"
|
||||
name="confirmFilePassword"
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
<input
|
||||
bitInput
|
||||
required
|
||||
type="{{ showFilePassword ? 'text' : 'password' }}"
|
||||
[type]="showFilePassword ? 'text' : 'password'"
|
||||
name="filePassword"
|
||||
[formControl]="filePassword"
|
||||
appAutofocus
|
||||
|
||||
Reference in New Issue
Block a user