Prevent showing webauthn error for every time visiting `/user/settings/security` (#18385)

tokarchuk/v1.17
wxiaoguang 3 years ago committed by GitHub
parent 5506cb92da
commit 9837773f0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      web_src/js/features/user-auth-webauthn.js

@ -150,13 +150,12 @@ export function initUserAuthWebAuthnRegister() {
return; return;
} }
if (!detectWebAuthnSupport()) {
return;
}
$('#webauthn-error').modal({allowMultiple: false}); $('#webauthn-error').modal({allowMultiple: false});
$('#register-webauthn').on('click', (e) => { $('#register-webauthn').on('click', (e) => {
e.preventDefault(); e.preventDefault();
if (!detectWebAuthnSupport()) {
return;
}
webAuthnRegisterRequest(); webAuthnRegisterRequest();
}); });
} }

Loading…
Cancel
Save