Merge pull request #610 from Retrospring/fix/sudo-syntax

Fix syntax error in password confirmation dialogues
This commit is contained in:
Karina Kwiatek 2022-08-04 15:48:05 +02:00 committed by GitHub
commit 1f970d8980
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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();
}
}