From 9e9054ca9735f34ed9f28d0b8cc3012a0f851748 Mon Sep 17 00:00:00 2001 From: Godwin Date: Sun, 27 Sep 2015 19:37:27 -0700 Subject: [PATCH] Case insensitive wokshop sorting --- app/views/application/home.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/application/home.html.haml b/app/views/application/home.html.haml index 8a85596..b612447 100644 --- a/app/views/application/home.html.haml +++ b/app/views/application/home.html.haml @@ -12,7 +12,7 @@ %h3=_'articles.workshops.headings.Proposed_Workshops' %p=_'articles.workshops.paragraphs.Proposed_Workshops', "Would you like to facilitate your own workshop? Simply register and visit the workshops page. If you have already registered you can access the page by restarting the registration process." %ul.workshop-list - - @conference.workshops.sort_by{|w| w.title}.each do |w| + - @conference.workshops.sort_by{ |w| w.title.downcase }.each do |w| %li %h4=w.title .workshop-interest