diff --git a/app/components/badge_component.html.erb b/app/components/badge_component.html.erb index da8b6c8a2ed..4514b4de4d3 100644 --- a/app/components/badge_component.html.erb +++ b/app/components/badge_component.html.erb @@ -1,4 +1,4 @@ <%= content_tag('div', **tag_options, class: ['lg-verification-badge', *tag_options[:class]]) do %> - <%= image_tag(asset_path("alerts/#{icon}.svg"), size: 16, alt: '') %> + <%= image_tag(asset_path("alerts/#{icon}.svg"), size: 16, alt: '', role: 'img') %> <%= content %> <% end %> diff --git a/app/views/mfa_confirmation/show.html.erb b/app/views/mfa_confirmation/show.html.erb index fca5ca3d3b6..d88f2569c95 100644 --- a/app/views/mfa_confirmation/show.html.erb +++ b/app/views/mfa_confirmation/show.html.erb @@ -1,6 +1,6 @@ <% self.title = @content.heading %> -<%= image_tag asset_url('user-signup-ial1.svg'), width: 107, height: 119, alt: '', class: 'margin-bottom-4' %> +<%= image_tag asset_url('user-signup-ial1.svg'), width: 107, height: 119, alt: '', class: 'margin-bottom-4', role: 'img' %> <%= render PageHeadingComponent.new.with_content(@content.heading) %> diff --git a/app/views/openid_connect/logout/index.html.erb b/app/views/openid_connect/logout/index.html.erb index f0f46059050..0e474590447 100644 --- a/app/views/openid_connect/logout/index.html.erb +++ b/app/views/openid_connect/logout/index.html.erb @@ -1,7 +1,7 @@ <% self.title = t('openid_connect.logout.heading', app_name: APP_NAME) %>