Merge pull request #3251 from jumpserver/dev_bugfix

[Bugfix] 修复改密计划菜单不高亮的问题
pull/3253/head
BaiJiangJie 2019-09-23 10:46:31 +08:00 committed by GitHub
commit 6f4d7dd6c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ function activeNav() {
} else {
$("#" + app).addClass('active');
$('#' + app + ' #' + resource).addClass('active');
$('#' + app + ' #' + resource.replace('-', '_')).addClass('active');
$('#' + app + ' #' + resource.replaceAll('-', '_')).addClass('active');
}
}