diff --git a/CHANGELOG.md b/CHANGELOG.md index 6dc38d58ef..ce4a5ddf68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,9 @@ and this project adheres to - ♿ add default background to left panel for better accessibility #1423 - ♿ restyle checked checkboxes: removing strikethrough #1439 - ♿ add h1 for SR on 40X pages and remove alt texts #1438 + - ♿ update labels and shared document icon accessibility #1442 + + ### Fixed - 🐛(backend) duplicate sub docs as root for reader users diff --git a/src/frontend/apps/impress/src/features/docs/docs-grid/components/DocsGridItem.tsx b/src/frontend/apps/impress/src/features/docs/docs-grid/components/DocsGridItem.tsx index efb1418e93..8829d82db7 100644 --- a/src/frontend/apps/impress/src/features/docs/docs-grid/components/DocsGridItem.tsx +++ b/src/frontend/apps/impress/src/features/docs/docs-grid/components/DocsGridItem.tsx @@ -102,17 +102,19 @@ export const DocsGridItem = ({ doc, dragMode = false }: DocsGridItemProps) => { } > {dragMode && ( - + + + {isPublic ? t('Accessible to anyone') - : t('Accessible to authenticated users') - } - /> + : t('Accessible to authenticated users')} + + )} {!dragMode && ( { $variation="600" $size="14px" iconName={isPublic ? 'public' : 'vpn_lock'} - aria-label={ - isPublic - ? t('Accessible to anyone') - : t('Accessible to authenticated users') - } /> + + {isPublic + ? t('Accessible to anyone') + : t('Accessible to authenticated users')} + )}