Skip to content

Commit a56133c

Browse files
committed
fix hidden-by-default
1 parent 1001540 commit a56133c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

webroot/admin/user-mgmt.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ class="filterSearch"
3838
>
3939
<th id="name"><span class="filter">⫧ </span>Name</th>
4040
<th id="uid"><span class="filter">⫧ </span>UID</th>
41-
<th id="org"><span class="filter hidden-by-default">⫧ </span>Org</th>
41+
<th id="org" class="hidden-by-default"><span class="filter">⫧ </span>Org</th>
4242
<th id="mail"><span class="filter">⫧ </span>Mail</th>
4343
<th id="groups"><span class="filter">⫧ </span>Groups</th>
4444
<th>Actions</th>
4545
<?php
4646
foreach (UserFlag::cases() as $flag) {
47-
$value = $flag->value;
48-
echo "<th id='$value'><span class='filter hidden-by-default'>⫧ </span>$value</th>";
47+
$val = $flag->value;
48+
echo "<th id='$val' class='hidden-by-default'><span class='filter'>⫧ </span>$val</th>";
4949
}
5050
?>
5151
</tr>

0 commit comments

Comments
 (0)