From bf8b93502dccd719ec5fb41f29c9f0455c15424e Mon Sep 17 00:00:00 2001 From: stefano basile Date: Tue, 19 Mar 2024 16:55:26 +0000 Subject: [PATCH] Address accessibility issue: "Links must have discernible text" https://dequeuniversity.com/rules/axe/4.8/link-name?application=AxeChrome which in this case is due to this: - To ensure all link text is visible to screen readers, link text cannot be hidden (e.g. with display: none or aria-hidden="true"). --- templates/locales-banner.njk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/locales-banner.njk b/templates/locales-banner.njk index 1f7ed63..8e0e2d0 100644 --- a/templates/locales-banner.njk +++ b/templates/locales-banner.njk @@ -16,7 +16,7 @@ It receives: {% for l in languages %}
  • - + {{l.Name}}
  • {% endfor %}