️(frontend) prevent dates from being focusable

Keep date links clickable with mouse while removing keyboard focus.
This commit is contained in:
Cyril
2026-02-02 12:35:43 +01:00
parent 17cb213ecd
commit de1a0e4a73
2 changed files with 3 additions and 3 deletions

View File

@@ -13,11 +13,11 @@ and this project adheres to
### Changed
- ♿️(frontend) prevent dates from being focusable #1855
- ♿️(frontend) Focus main container after navigation #1854
- 🚸(backend) sort user search results by proximity with the active user #1802
- 🚸(backend) sort user search results by proximity with the active user #1802
- 🚸(oidc) ignore case when fallback on email #1880
### Fixed
- 🐛(frontend) fix broadcast store sync #1846

View File

@@ -223,7 +223,7 @@ export const DocsGridItemDate = ({
}
return (
<StyledLink href={`/docs/${doc.id}`}>
<StyledLink href={`/docs/${doc.id}`} tabIndex={-1}>
<Text
$size="xs"
$layer="background"