Skip to content

Commit

Permalink
fix(storefront): BCTHEME-1850 Account.php <a href> is inside of a lis…
Browse files Browse the repository at this point in the history
…t item
  • Loading branch information
VladDlogush committed Apr 24, 2024
1 parent a8bb619 commit 1ff318c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Draft
- Account.php <a href> is inside of a list item [#2457](https://github.com/bigcommerce/cornerstone/pull/2457)
- Storefront nav for switching between country-specific websites (step 1) [#2453](https://github.com/bigcommerce/cornerstone/pull/2453)
- ADA Compliance - Accordion buttons are not read by screen reader correctly [#2441](https://github.com/bigcommerce/cornerstone/pull/2441)
- ADA Compliance - Region requires additional ARIA markup to assist screen reader users [#2435](https://github.com/bigcommerce/cornerstone/pull/2435)
Expand Down
6 changes: 3 additions & 3 deletions templates/components/common/small-paginator.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@

{{#if this.links.length}}
{{#each this.links}}
<a class="pagination-link" href="{{this.link}}">
<li class="pagination-item">{{this.number}}</li>
</a>
<li class="pagination-item">
<a class="pagination-link" href="{{this.link}}">{{this.number}}</a>
</li>
{{/each}}
{{/if}}

Expand Down

0 comments on commit 1ff318c

Please sign in to comment.