Browse Source

Fixed hguest sorting and workshop heading line height

development
Godwin 7 years ago
parent
commit
9b380e8de3
  1. 1
      app/assets/stylesheets/_application.scss
  2. 2
      app/controllers/conference_administration_controller.rb

1
app/assets/stylesheets/_application.scss

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

2
app/controllers/conference_administration_controller.rb

@ -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

Loading…
Cancel
Save