Skip to content

Commit

Permalink
Change the sort order for permission on edit role view. Fix #12408 (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeAlhayek authored Sep 16, 2022
1 parent d7a7f2c commit b4a7de3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
</tr>
</thead>
<tbody>
@foreach (var permission in group.Value.OrderBy(x => x.Name))
@foreach (var permission in group.Value.OrderBy(x => x.Description))
{
<tr data-text="@permission.Description">
<td class="col-10">
Expand Down

0 comments on commit b4a7de3

Please sign in to comment.