Skip to content

Commit

Permalink
Merge pull request #2461 from sul-dlss/2460-sort-proxies
Browse files Browse the repository at this point in the history
Sort proxies by their display name; fixes #2460
  • Loading branch information
hudajkhan authored May 13, 2024
2 parents af4a919 + bd7bf88 commit f5e7285
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/patron_requests/_list_proxies_form.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="mt-2">
<ul>
<%
f.object.patron.proxies.sort.each do |proxy|
f.object.patron.proxies.sort_by(&:display_name).each do |proxy|
%>
<li><%= proxy.display_name %></li>
<%
Expand Down

0 comments on commit f5e7285

Please sign in to comment.