Unverified Commit 6f4d7dd6 authored by BaiJiangJie's avatar BaiJiangJie Committed by GitHub

Merge pull request #3251 from jumpserver/dev_bugfix

[Bugfix] 修复改密计划菜单不高亮的问题
parents f15dc881 76e2f750
...@@ -153,7 +153,7 @@ function activeNav() { ...@@ -153,7 +153,7 @@ function activeNav() {
} else { } else {
$("#" + app).addClass('active'); $("#" + app).addClass('active');
$('#' + app + ' #' + resource).addClass('active'); $('#' + app + ' #' + resource).addClass('active');
$('#' + app + ' #' + resource.replace('-', '_')).addClass('active'); $('#' + app + ' #' + resource.replaceAll('-', '_')).addClass('active');
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment