mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 15:23:33 +00:00
string[] type on passwords
This commit is contained in:
@@ -345,7 +345,7 @@ document.addEventListener('DOMContentLoaded', (event) => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!disabledChangedPasswordNotification && formData[i].passwordEls != null) {
|
if (!disabledChangedPasswordNotification && formData[i].passwordEls != null) {
|
||||||
const passwords = formData[i].passwordEls
|
const passwords: string[] = formData[i].passwordEls
|
||||||
.filter((el: HTMLInputElement) => el.value != null && el.value !== '')
|
.filter((el: HTMLInputElement) => el.value != null && el.value !== '')
|
||||||
.map((el: HTMLInputElement) => el.value);
|
.map((el: HTMLInputElement) => el.value);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user