- Status changed to Postponed: needs info
about 2 months ago 7:50pm 19 May 2025 - 🇺🇸United States smustgrave
Able to reproduce without domain? Possible the issue is on the domain side?
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.
Able to reproduce without domain? Possible the issue is on the domain side?