Fix empty aria-hidden
attribute value in logo resources area (#30570)
This commit is contained in:
parent
e02d23b549
commit
2fdd782f21
2 changed files with 2 additions and 2 deletions
|
@ -43,6 +43,6 @@
|
|||
%body{ class: body_classes }
|
||||
= content_for?(:content) ? yield(:content) : yield
|
||||
|
||||
.logo-resources{ 'tabindex' => '-1', 'inert' => true, 'aria-hidden' => true }
|
||||
.logo-resources{ 'tabindex' => '-1', 'inert' => true, 'aria-hidden' => 'true' }
|
||||
= inline_svg_tag 'logo-symbol-icon.svg'
|
||||
= inline_svg_tag 'logo-symbol-wordmark.svg'
|
||||
|
|
|
@ -20,5 +20,5 @@
|
|||
%body.embed
|
||||
= yield
|
||||
|
||||
.logo-resources{ 'tabindex' => '-1', 'inert' => true, 'aria-hidden' => true }
|
||||
.logo-resources{ 'tabindex' => '-1', 'inert' => true, 'aria-hidden' => 'true' }
|
||||
= inline_svg_tag 'logo-symbol-icon.svg'
|
||||
|
|
Loading…
Reference in a new issue