From 9b33b8d7ac31b58a6e5e37c095929ad71b229916 Mon Sep 17 00:00:00 2001 From: Antonio Basilio Date: Mon, 5 Jan 2026 11:10:02 -0300 Subject: [PATCH 1/2] feat: accessible label and visible name as the same --- react/ProductSummaryCustom.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/react/ProductSummaryCustom.tsx b/react/ProductSummaryCustom.tsx index f053d808..12d0e419 100644 --- a/react/ProductSummaryCustom.tsx +++ b/react/ProductSummaryCustom.tsx @@ -163,7 +163,7 @@ function ProductSummaryCustom({ to: href, onClick: autocompleteSummary ? actionOnClick : undefined, onClickCapture: autocompleteSummary ? undefined : actionOnClick, - 'aria-label': `View product details for ${ + 'aria-label': `${ product?.productName || 'product' }`, } @@ -177,7 +177,7 @@ function ProductSummaryCustom({ query, onClick: autocompleteSummary ? actionOnClick : undefined, onClickCapture: autocompleteSummary ? undefined : actionOnClick, - 'aria-label': `View product details for ${ + 'aria-label': `${ product?.productName || 'product' }`, } From 35de4d59dc306455a99ff435a4e26fecd7c76bee Mon Sep 17 00:00:00 2001 From: Antonio Basilio Date: Mon, 5 Jan 2026 11:13:09 -0300 Subject: [PATCH 2/2] feat: update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c603f2cd..6337ebd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] + - Change aria-label in shelf to be the same as product name (visible label) + ## [2.91.0] - 2025-11-05 ### Added