Skip to content

Commit

Permalink
Fix no show rows in permissions (#29542)
Browse files Browse the repository at this point in the history
### Proposed Changes
* Fix no-show rows in permissions


<img width="1183" alt="Screenshot 2024-08-12 at 2 17 09 PM"
src="https://github.com/user-attachments/assets/55d56d38-5c57-42ee-822d-ba3824f00048">
  • Loading branch information
oidacra authored Aug 13, 2024

Verified

This commit was signed with the committer’s verified signature.
raydouglass Ray Douglass
1 parent 2d72851 commit f96e156
Showing 2 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<table class="accordionEntry" style="margin-top:-10px;">
<table class="accordionEntry">

<tr>
<th style="padding-left:20px;" class="permissionType">${contentWillInherit} (Children)</th>
@@ -11,4 +11,4 @@
<tr>
<td colspan="6" style="padding-top:18px;font-style:italic;font-size:93%">${permissionsOnContentTypeChildren}</td>
</tr>
</table>
</table>
Original file line number Diff line number Diff line change
@@ -204,6 +204,8 @@
}
});
var mySize = this._contentBox;
if (isHost && !inheritingPermissions) {
this._verticalSpace = 280;
}else if (isFolder && !inheritingPermissions) {
@@ -216,7 +218,7 @@
// Memo size to make displayed child
this._containerContentBox = {
h: this._verticalSpace,
h: 'auto',
w: mySize.w
};
@@ -332,7 +334,6 @@
function adjustAccordionHeigth() {
var container = dijit.byId('permissionsAccordionContainer');
container.resize();
}
function addPermissionsAccordionPane(role) {
@@ -363,7 +364,11 @@
else
break;
}
accordionContainer.addChild(contentPane, insertIndex);
}
function initPermissionsAccordionPane(role) {

0 comments on commit f96e156

Please sign in to comment.