From 702e6086b914509dcc3b77f10e7ccf9361ac2a2b Mon Sep 17 00:00:00 2001 From: bmbitwarden Date: Thu, 19 Feb 2026 19:26:18 -0500 Subject: [PATCH] PM-30876 resolved screenreader for icons on send table rows (#18940) * PM-30876 resolved screenreader for icons on send table rows * PM-30876 resolved grey icon issue * PM-30876 resolved blank underline issue * PM-30876 resolved screen reader * PM-30876 resolved screen reader --- .../src/send-table/send-table.component.html | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/libs/tools/send/send-ui/src/send-table/send-table.component.html b/libs/tools/send/send-ui/src/send-table/send-table.component.html index 1c235415cae..14dc93bb706 100644 --- a/libs/tools/send/send-ui/src/send-table/send-table.component.html +++ b/libs/tools/send/send-ui/src/send-table/send-table.component.html @@ -29,9 +29,9 @@ class="bwi bwi-exclamation-triangle" appStopProp title="{{ 'disabled' | i18n }}" - aria-hidden="true" + aria-label="{{ 'disabled' | i18n }}" + tabindex="0" > - {{ "disabled" | i18n }} } @if (s.authType !== authType.None) { @let titleKey = @@ -40,36 +40,36 @@ class="bwi bwi-lock" appStopProp title="{{ titleKey | i18n }}" - aria-hidden="true" + aria-label="{{ titleKey | i18n }}" + tabindex="0" > - {{ titleKey | i18n }} } @if (s.maxAccessCountReached) { - {{ "maxAccessCountReached" | i18n }} } @if (s.expired) { - {{ "expired" | i18n }} } @if (s.pendingDelete) { - {{ "pendingDeletion" | i18n }} }