Skip to content

Commit

Permalink
Merge pull request #417 from epimorphics/issue/404-a11y-1.1.1
Browse files Browse the repository at this point in the history
Issue/404 a11y 1.1.1
  • Loading branch information
bogdanadrianmarc authored Aug 8, 2024
2 parents c115d54 + 479f1cd commit 3ea9e9a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changes to the UKHPI app by version and date

## unreleased
## 1.7.5 - 2024-08

- (Bogdan) Added alt text to application logo [GH-404](https://github.com/epimorphics/ukhpi/issues/404)

## 1.7.4 - 2024-04-19

Expand Down
2 changes: 1 addition & 1 deletion app/lib/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Version
MAJOR = 1
MINOR = 7
PATCH = 4
PATCH = 5
SUFFIX = nil
VERSION = "#{MAJOR}.#{MINOR}.#{PATCH}#{SUFFIX && ".#{SUFFIX}"}"
end
2 changes: 1 addition & 1 deletion app/views/common/_header.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.header-global
.header-logo
%a.content{ href: "#{Rails.application.config.relative_url_root}", title: t('common.header.home_link') }
= image_tag('ukhpi-icon.png', srcset: image_path('ukhpi-icon.svg'), alt: '')
= image_tag('ukhpi-icon.png', srcset: image_path('ukhpi-icon.svg'), alt: 'UKHPI Logo')


.header-proposition
Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/print.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
.header-global
.header-logo
%a.content{ href: "#{Rails.application.config.relative_url_root}", title: t('common.header.home_link') }
= image_tag('ukhpi-icon.png', srcset: image_path('ukhpi-icon.svg'), alt: '')
= image_tag('ukhpi-icon.png', srcset: image_path('ukhpi-icon.svg'), alt: 'UKHPI Logo')
.header-proposition
.content
%nav#proposition-menu
Expand Down

0 comments on commit 3ea9e9a

Please sign in to comment.