From 259ff3436f3eecf78b748e238e98bfda6817cc44 Mon Sep 17 00:00:00 2001 From: guillaume Date: Wed, 24 Apr 2019 12:35:00 +0200 Subject: fix lints --- client/components/main/layouts.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'client/components') diff --git a/client/components/main/layouts.js b/client/components/main/layouts.js index 9d2e7ae2..d5113a25 100644 --- a/client/components/main/layouts.js +++ b/client/components/main/layouts.js @@ -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; } } -- cgit v1.2.3-1-g7c22