From 8e23ef6a159eaf305f8a92ad94263e833f159c83 Mon Sep 17 00:00:00 2001 From: Viktor Fomin Date: Sat, 5 Mar 2022 14:02:15 +0300 Subject: [PATCH] Web: Client: fix text error --- .../components/pages/Confirm/sub-components/createUser.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/web/ASC.Web.Client/src/components/pages/Confirm/sub-components/createUser.js b/web/ASC.Web.Client/src/components/pages/Confirm/sub-components/createUser.js index a7db1f95d1..1bbd7c7bb4 100644 --- a/web/ASC.Web.Client/src/components/pages/Confirm/sub-components/createUser.js +++ b/web/ASC.Web.Client/src/components/pages/Confirm/sub-components/createUser.js @@ -557,7 +557,11 @@ const Confirm = (props) => { labelVisible={false} hasError={!emailValid} errorMessage={ - emailErrorText ? emailErrorText : t("Common:RequiredField") + emailErrorText + ? emailErrorText + : errorText + ? errorText + : t("Common:RequiredField") } >