From fa5736285ebf563c20a6c660d0a0d19c77e44f09 Mon Sep 17 00:00:00 2001 From: Farhaan Bukhsh Date: Thu, 22 Jul 2021 19:21:02 +0530 Subject: [PATCH] fix: Passwored reset page throwing page not found error (#27982) Signed-off-by: Farhaan Bukhsh --- lms/static/js/student_account/views/AccessView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/static/js/student_account/views/AccessView.js b/lms/static/js/student_account/views/AccessView.js index 9687fc1000..d59f1a86c6 100644 --- a/lms/static/js/student_account/views/AccessView.js +++ b/lms/static/js/student_account/views/AccessView.js @@ -283,7 +283,7 @@ this.element.show($form); // Update url without reloading page - if (type != 'institution_login') { + if (type != 'institution_login' && type != 'reset') { History.pushState(null, document.title, '/' + type + queryStr); } analytics.page('login_and_registration', type);