Skip to content

Commit

Permalink
[BugFix] Fix change password tab not working (#4069)
Browse files Browse the repository at this point in the history
Co-authored-by: Gunjan Chhablani <chhablani.gunjan@gmail.com>
  • Loading branch information
Suryansh5545 and gchhablani authored Jul 31, 2023
1 parent c3408e3 commit f67ae99
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frontend/src/js/route-config/route-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -420,8 +420,8 @@
};

var change_password = {
name: "web.change-password",
parent: "web",
name: "web.profile.change-password",
parent: "web.profile",
url: "/change-password",
templateUrl: baseUrl + "/web/change-password.html",
title: "Change Password",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/web/profile/profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class="text-light-black w-300"><i class="fa fa-users"></i> Profile</a></li>
<li class="margin-btm-0"><a ui-sref=".AuthToken" ui-sref-active="active-challenge"
class="text-light-black w-300"><i class="fa fa-lock"></i> Auth Token</a></li>
<li class="margin-btm-0"><a ui-sref=".ChangePassword" ui-sref-active="active-challenge"
<li class="margin-btm-0"><a ui-sref=".change-password" ui-sref-active="active-challenge"
class="text-light-black w-300"><i class="fa fa-key"></i> Password</a></li>
</ul>
</div>
Expand Down

0 comments on commit f67ae99

Please sign in to comment.