From 562c4ae6d4f38cf4772cf3f638da4b28d27f761c Mon Sep 17 00:00:00 2001 From: Atul Tameshwari Date: Wed, 2 Sep 2026 14:27:14 +0530 Subject: [PATCH] fix: enhance accessibility for Upgrade to One link in IssueBulkOperationsRoot Updated the anchor element for the "Upgrade to One" button to include an aria-label for improved accessibility. This change ensures that screen readers can properly announce the purpose of the link, enhancing the user experience for individuals relying on assistive technologies. --- .../core/components/issues/bulk-operations/root.tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/apps/web/core/components/issues/bulk-operations/root.tsx b/apps/web/core/components/issues/bulk-operations/root.tsx index b37d140a19..8643b18e2d 100644 --- a/apps/web/core/components/issues/bulk-operations/root.tsx +++ b/apps/web/core/components/issues/bulk-operations/root.tsx @@ -39,8 +39,14 @@ export const IssueBulkOperationsRoot = observer(function IssueBulkOperationsRoot size="sm" label="Upgrade to One" nativeButton={false} - // oxlint-disable-next-line jsx_a11y/anchor-has-content -- AnchorButton injects `label` as the anchor's children at runtime - render={} + render={ + + } /> } render={
}