Skip to content

Commit

Permalink
Removes class 'w-100' from Dashboard logo (#3568)
Browse files Browse the repository at this point in the history
  • Loading branch information
HazelGrant authored May 29, 2024
1 parent ac4670d commit c4bcf0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/dashboard/app/helpers/dashboard_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ def logo_image_tag(url)
if url
uri = Addressable::URI.parse(url)
uri.query_values = (uri.query_values || {}).merge({timestamp: Time.now.to_i})
tag.img(src: uri, alt: "logo", height: @user_configuration.dashboard_logo_height, class: 'py-2 w-100')
tag.img(src: uri, alt: "logo", height: @user_configuration.dashboard_logo_height, class: 'py-2')
else # default logo image
image_tag("OpenOnDemand_stack_RGB.svg", alt: "logo", height: "85", class: 'py-2 w-100')
image_tag("OpenOnDemand_stack_RGB.svg", alt: "logo", height: "85", class: 'py-2')
end
end

Expand Down

0 comments on commit c4bcf0b

Please sign in to comment.