diff --git a/dotCMS/hotfix_tracking.md b/dotCMS/hotfix_tracking.md index 3a55dbe18f1e..05516592dc62 100644 --- a/dotCMS/hotfix_tracking.md +++ b/dotCMS/hotfix_tracking.md @@ -154,3 +154,4 @@ This maintenance release includes the following code fixes: 147. https://github.com/dotCMS/core/issues/29213 : Copying a contentlet without having Edit Permissions causes copy to have incorrect permissions. #29213 148. https://github.com/dotCMS/core/issues/28580 : fix: avoid NPE on Patch WF API when there is not any contentlet map #28580 149. https://github.com/dotCMS/core/issues/28489 : Creating new content don't respect language selected #28489 +150. https://github.com/dotCMS/core/issues/28814 : Rules permission checkbox is not visible #28814 diff --git a/dotCMS/src/main/webapp/html/portlet/ext/common/edit_permissions_accordion_contentType_entry.html b/dotCMS/src/main/webapp/html/portlet/ext/common/edit_permissions_accordion_contentType_entry.html index c2fbd6d21642..ee38a6073d59 100644 --- a/dotCMS/src/main/webapp/html/portlet/ext/common/edit_permissions_accordion_contentType_entry.html +++ b/dotCMS/src/main/webapp/html/portlet/ext/common/edit_permissions_accordion_contentType_entry.html @@ -1,4 +1,4 @@ - +
@@ -11,4 +11,4 @@ -
${contentWillInherit} (Children)
${permissionsOnContentTypeChildren}
\ No newline at end of file + diff --git a/dotCMS/src/main/webapp/html/portlet/ext/common/edit_permissions_tab_js_inc.jsp b/dotCMS/src/main/webapp/html/portlet/ext/common/edit_permissions_tab_js_inc.jsp index 5b25663c045b..80e6ecedc182 100644 --- a/dotCMS/src/main/webapp/html/portlet/ext/common/edit_permissions_tab_js_inc.jsp +++ b/dotCMS/src/main/webapp/html/portlet/ext/common/edit_permissions_tab_js_inc.jsp @@ -216,7 +216,7 @@ // Memo size to make displayed child this._containerContentBox = { - h: this._verticalSpace, + h: 'auto', w: mySize.w }; diff --git a/dotCMS/src/main/webapp/html/portlet/ext/roleadmin/view_role_permissions_js_inc.jsp b/dotCMS/src/main/webapp/html/portlet/ext/roleadmin/view_role_permissions_js_inc.jsp index a9c2016d10f9..698ff218e5bc 100644 --- a/dotCMS/src/main/webapp/html/portlet/ext/roleadmin/view_role_permissions_js_inc.jsp +++ b/dotCMS/src/main/webapp/html/portlet/ext/roleadmin/view_role_permissions_js_inc.jsp @@ -242,7 +242,7 @@ container.startup(); var selectedChildPaneId = systemHost.identifier; - var myHeight = 428; + var myHeight = 500; for(var i = 0; i < data.length; i++) { var id = data[i].type=='host'?data[i].identifier:data[i].inode; if(id != systemHost.identifier)