mirror of
https://github.com/bitwarden/browser
synced 2025-12-23 19:53:43 +00:00
Fix build errors for strict templates (#4134)
This commit is contained in:
@@ -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