From 0f96e595eee064615c474f2d1e3b0e9f958e9529 Mon Sep 17 00:00:00 2001 From: adeelehsan <adeel.ehsan@arbisoft.com> Date: Mon, 5 Oct 2020 17:34:38 +0500 Subject: [PATCH] suppressed email in forgot password banner VAN-81 --- lms/static/js/student_account/views/LoginView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/static/js/student_account/views/LoginView.js b/lms/static/js/student_account/views/LoginView.js index ebbcb858f8b..466c133535c 100644 --- a/lms/static/js/student_account/views/LoginView.js +++ b/lms/static/js/student_account/views/LoginView.js @@ -165,7 +165,7 @@ gettext('{paragraphStart}You entered {boldStart}{email}{boldEnd}. If this email address is associated with your {platform_name} account, we will send a message with password recovery instructions to this email address.{paragraphEnd}' + // eslint-disable-line max-len '{paragraphStart}If you do not receive a password reset message after 1 minute, verify that you entered the correct email address, or check your spam folder.{paragraphEnd}' + // eslint-disable-line max-len '{paragraphStart}If you need further assistance, {anchorStart}contact technical support{anchorEnd}.{paragraphEnd}'), { // eslint-disable-line max-len - boldStart: HtmlUtils.HTML('<b>'), + boldStart: HtmlUtils.HTML('<b data-hj-suppress>'), boldEnd: HtmlUtils.HTML('</b>'), paragraphStart: HtmlUtils.HTML('<p>'), paragraphEnd: HtmlUtils.HTML('</p>'), -- GitLab