Fixed hguest sorting and workshop heading line height

This commit is contained in:
Godwin 2017-08-12 12:11:53 -07:00
parent d23c5034ed
commit 9b380e8de3
2 changed files with 2 additions and 1 deletions

View File

@ -38,6 +38,7 @@ h2 {
h3, legend {
font-size: 4.5vw;
margin: 0.75em 0;
line-height: 1.333em;
}
h4 {

View File

@ -884,7 +884,7 @@ class ConferenceAdministrationController < ApplicationController
end
end
@guests = @guests.sort_by { |k,v| v.user.firstname }
@guests = @guests.sort_by { |k,v| v.user.firstname.downcase }
return @hosts_affected_by_guests
end