Skip to content

Commit

Permalink
playing with display to include description at WG level
Browse files Browse the repository at this point in the history
  • Loading branch information
axel committed Jul 23, 2021
1 parent 03323e9 commit c61c75d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion View/GrouperGroups/groupmember.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ $numColumns = count($columns);
</tr>
<?php foreach ($wgmemberships as $wggroup) : ?>
<tr class="table-light">
<td colspan="<?php echo $numColumns - 1; ?>">
<td colspan="<?php echo $numColumns - 2; ?>">
<button type="button" class="btn btn-link btn-text collapse-btn fw-bold m-0 collapsed" data-toggle="collapse" data-target=".collapse-wg-<?php echo $wggroup['WGName']; ?>" role="button" aria-expanded="false">
<?php echo $wggroup['WGName'] ?? "No Name"; ?>
<i class="fa fa-caret-down fa-sm"></i>
Expand Down
2 changes: 1 addition & 1 deletion View/GrouperGroups/groupoptin.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ $numColumns = count($columns);
</tr>
<?php foreach ($wgoptins as $i => $wgoptin) : ?>
<tr class="table-light">
<td colspan="<?php echo $numColumns - 1; ?>">
<td colspan="<?php echo $numColumns - 2; ?>">
<button type="button" class="btn btn-link btn-text collapse-btn h6 fw-bold m-0 collapsed" data-toggle="collapse" data-target=".collapse-wg-<?php echo $wgoptin['WGName']; ?>" role="button" aria-expanded="false">
<?php echo $wgoptin['WGName'] ?? "No Name"; ?>
<i class="fa fa-caret-down fa-sm"></i>
Expand Down

0 comments on commit c61c75d

Please sign in to comment.