This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new ceee7524 Don't try to sort on array
ceee7524 is described below

commit ceee752494877796561586e42cf64838563eb62c
Author: Sebb <[email protected]>
AuthorDate: Fri Mar 6 12:25:05 2026 +0000

    Don't try to sort on array
    
    This fixes #288
---
 www/committers/tools.cgi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www/committers/tools.cgi b/www/committers/tools.cgi
index 88c2b671..f7cf8bdd 100755
--- a/www/committers/tools.cgi
+++ b/www/committers/tools.cgi
@@ -55,7 +55,7 @@ _html do
           _li.list_group_item.active do
             _span category.capitalize, id: category
           end
-          links.sort_by{|_k, v| v}.each do |l, desc|
+          links.sort_by{|_k, v| v.first}.each do |l, desc|
             _li.list_group_item do
               if 2 == desc.length
                 _span.glyphicon :aria_hidden, class: AUTHPUBLIC

Reply via email to