Skip to content

Commit

Permalink
Merge pull request thinkingreed-inc#276 from K-Haruto:fix_ManageUsers…
Browse files Browse the repository at this point in the history
…_HiddenOption

thinkingreed-inc#62 ユーザー管理のユーザーの画面にて、パスワードの変更等の表示が埋もれている箇所の修正
  • Loading branch information
Remicck committed Dec 1, 2021
1 parent 4541bd0 commit 0293d5f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions layouts/v7/modules/Vtiger/resources/List.js
Original file line number Diff line number Diff line change
Expand Up @@ -2809,6 +2809,18 @@ Vtiger.Class("Vtiger_List_Js", {
} else {
$column.addClass("fix-data-column");
}

/*
ユーザー管理の「ユーザー」と「プロファイル」にて
fix-data-columnが適応されるとドロップダウンメニューが隠れてしまうので削除する
*/
var module = app.getModuleName();
var parentModule = app.getParentModuleName();
if(parentModule == 'Settings'){
if(module == 'Users' || module == 'Profiles'){
$column.removeClass("fix-data-column")
}
}

if(i > 0) {
$column.css({
Expand Down

0 comments on commit 0293d5f

Please sign in to comment.