From f5a7a346afa33b3e83a6cc6a2c108a8d8664d03a Mon Sep 17 00:00:00 2001 From: daria Date: Fri, 1 Sep 2023 14:35:27 +0300 Subject: [PATCH] changed error text on login page fixed #1207 --- customize.dist/login.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/customize.dist/login.js b/customize.dist/login.js index cc3ae191a..2d86f8ce6 100644 --- a/customize.dist/login.js +++ b/customize.dist/login.js @@ -589,7 +589,8 @@ define([ break; case 'INVAL_USER': UI.removeLoadingScreen(function () { - UI.alert(Messages.login_invalUser, function () { + Messages.login_notFilledUser = 'The field Username has not been filled in'; // XXX + UI.alert(Messages.login_notFilledUser , function () { hashing = false; $('#password').focus(); }); @@ -597,7 +598,8 @@ define([ break; case 'INVAL_PASS': UI.removeLoadingScreen(function () { - UI.alert(Messages.login_invalPass, function () { + Messages.login_notFilledPass = 'The field Password has not been filled in'; // XXX + UI.alert(Messages.login_notFilledPass, function () { hashing = false; $('#password').focus(); });