1
0
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:
Oscar Hinton
2022-11-29 00:00:45 +01:00
committed by GitHub
parent ae5df5472c
commit 1686c3b3c0
7 changed files with 12 additions and 10 deletions

View File

@@ -78,7 +78,7 @@
<input
id="login_input_master-password"
bitInput
type="{{ showPassword ? 'text' : 'password' }}"
[type]="showPassword ? 'text' : 'password'"
formControlName="masterPassword"
appAutofocus
/>

View File

@@ -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()">

View File

@@ -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"

View File

@@ -19,7 +19,7 @@
<input
bitInput
required
type="{{ showFilePassword ? 'text' : 'password' }}"
[type]="showFilePassword ? 'text' : 'password'"
name="filePassword"
[formControl]="filePassword"
appAutofocus