From 732a9e4d939163c77d3f446f0c3e6d44df867338 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 16 Aug 2019 13:00:27 +0200 Subject: [PATCH] LDAP edit users BUG fixed --- client/src/users/CUD.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/users/CUD.js b/client/src/users/CUD.js index 1db8b679..a6d47690 100644 --- a/client/src/users/CUD.js +++ b/client/src/users/CUD.js @@ -90,7 +90,7 @@ export default class CUD extends Component { } else if (usernameServerValidation && usernameServerValidation.exists) { state.setIn(['username', 'error'], t('theUserNameAlreadyExistsInTheSystem')); } else if (!usernameServerValidation) { - state.setIn(['email', 'error'], t('validationIsInProgress')); + state.setIn(['username', 'error'], t('validationIsInProgress')); } else { state.setIn(['username', 'error'], null); }