Fix syntax error in password confirmation dialogues

This commit is contained in:
Karina Kwiatek 2022-08-04 15:09:20 +02:00
parent 30fc401ffc
commit 29e0f06222
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
export function userSubmitHandler(event: Event): void {
if (document.querySelector<HTMLInputElement>('#user_current_password').value.length === 0) {
event.preventDefault();
document.querySelector<HTMLButtonElement>('[data-target=#modal-passwd]').click();
document.querySelector<HTMLButtonElement>('[data-target="#modal-passwd"]').click();
}
}