Skip to content

Commit

Permalink
Applied toggle fix to owner page
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Oct 27, 2021
1 parent bad48da commit f788073
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions View/GrouperGroups/groupowner.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ $numColumns = count($columns);
<tbody>
<tr class="table-secondary">
<td colspan="<?php echo $numColumns; ?>">
<button type="button" class="btn btn-link btn-text collapse-btn fw-bold m-0" data-toggle="collapse" data-target=".collapse-wg-working-group-parent" role="button" aria-expanded="false">
<button type="button" class="btn btn-link btn-text collapse-btn fw-bold m-0 work-group-heading-btn" data-toggle="collapse" data-target=".collapse-wg-working-group-parent" role="button" aria-expanded="false">
Working groups
<i class="fa fa-caret-down fa-sm"></i>
</button>
Expand All @@ -111,7 +111,7 @@ $numColumns = count($columns);
</td>
</tr>
<?php foreach ($wgowner['Groups'] as $key => $group) : ?>
<tr class="collapse collapse-wg-<?php echo $wgowner['WGName']; ?>" id="collapse-wg-<?php echo $wgowner['WGName'] . '-' . $key; ?>">
<tr class="collapse collapse-wg-<?php echo $wgowner['WGName']; ?> collapse-wg-working-group" id="collapse-wg-<?php echo $wgowner['WGName'] . '-' . $key; ?>">
<td class="pl-3"><?php echo $group['WGApp'] ?? "No Name"; ?></td>
<td><?php echo $group['WGRole'] ?? _txt('pl.grouperlite.value.descr.zerostate'); ?></td>
<td><?php echo $group['description'] ?? _txt('pl.grouperlite.value.descr.zerostate'); ?></td>
Expand Down

0 comments on commit f788073

Please sign in to comment.