When using External Links along with the Domain module, which offers Domain Configuration, unexpected values are being rendered for things like aria-hidden
.
Out of the box, External Links renders aria-hidden="false"
just fine for the "Hide decorative icons from screen readers" configuration option.
However, when using Domain Configuration, this value is stored as 0
or 1
, which results in an invalid property: aria-hidden="0"
.
aria-hidden="1"
Could line 458 check the value rather than just outputting the value to prevent these cases? Something like iconElement.setAttribute('aria-hidden', drupalSettings.data.extlink.extHideIcons ? true : false);
?
Active
2.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.