mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-13 21:33:20 +01:00
Fix syntax error in password confirmation dialogues
This commit is contained in:
parent
30fc401ffc
commit
29e0f06222
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue