Skip to content

Commit

Permalink
DESENG-617 Update changelog, check linting, final tweaks to screen re…
Browse files Browse the repository at this point in the history
…ader language
  • Loading branch information
Alex committed Jun 28, 2024
1 parent 7d5992c commit 516b1c6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## June 28, 2024
- **Task** Improve screen reader support for home/engagement search page [DESENG-617](https://citz-gdx.atlassian.net/browse/DESENG-617)

## June 27, 2024

- **Bugfix** Fix tenant landing page [🎟️ DESENG-635](https://citz-gdx.atlassian.net/browse/DESENG-635)
Expand Down
2 changes: 1 addition & 1 deletion met-web/src/components/landing/FilterBlock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const FilterBlock = () => {
<Grid item xl={6} lg={8} md={10} sm={8} xs={12}>
<MetLabel paddingBottom={'3px'}>{translate('landing.filters.search')}</MetLabel>
<CustomTextField
aria-label="Search box for filtering engagements. Type or select filters to narrow results automatically."
aria-label="Search box for filtering engagements. Search by title or select filters to narrow results automatically."
tabIndex={0}
fullWidth
placeholder={translate('landing.filters.searchPlaceholder')}
Expand Down
5 changes: 4 additions & 1 deletion met-web/src/components/landing/TileBlock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ const TileBlock = () => {
xs={10}
>
<NoResult />
<ul tabIndex={0} aria-label="Engagements list. No results."></ul>
</Grid>
);
}
Expand All @@ -76,6 +77,7 @@ const TileBlock = () => {
{engagements.map((engagement, index) => {
return (
<Grid
component="ul"
item
container
xs={12}
Expand All @@ -86,9 +88,10 @@ const TileBlock = () => {
flexBasis: '320px',
alignItems: 'center',
justifyContent: 'center',
listStyleType: 'none',
}}
>
<Grid item width="320px">
<Grid item width="320px" component="li">
<EngagementTile passedEngagement={engagement} engagementId={engagement.id} />
</Grid>
</Grid>
Expand Down

0 comments on commit 516b1c6

Please sign in to comment.