mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 04:57:07 -04:00
fix lints
This commit is contained in:
parent
8b3601248d
commit
259ff3436f
1 changed files with 3 additions and 3 deletions
|
@ -113,11 +113,11 @@ async function authentication(event, instance) {
|
|||
const match = $('#at-field-username_and_email').val();
|
||||
const password = $('#at-field-password').val();
|
||||
|
||||
if (!match || !password) return;
|
||||
if (!match || !password) return undefined;
|
||||
|
||||
const result = await getAuthenticationMethod(instance.currentSetting.get(), match);
|
||||
|
||||
if (result === 'password') return;
|
||||
if (result === 'password') return undefined;
|
||||
|
||||
// Stop submit #at-pwd-form
|
||||
event.preventDefault();
|
||||
|
@ -139,7 +139,7 @@ async function authentication(event, instance) {
|
|||
});
|
||||
|
||||
default:
|
||||
return;
|
||||
return undefined;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue