From ca83a0786bc6f03f540d36aad11c55cef1d88a51 Mon Sep 17 00:00:00 2001 From: Hunter Leachman Date: Fri, 29 Jul 2022 19:48:54 -0500 Subject: [PATCH] fix(storefront): BCTHEME-1077 clarify customer order pagination --- CHANGELOG.md | 1 + templates/components/common/small-paginator.html | 8 +++++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1948afa7e1..ba1af02784 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - On customer message page, screen reader should say each error [#2234]https://github.com/bigcommerce/cornerstone/pull/2234 - Bump webpack-bundle-analyzer [#2229]https://github.com/bigcommerce/cornerstone/pull/2229 - Make screen reader say all errors then each error while tabbing. [#2230]https://github.com/bigcommerce/cornerstone/pull/2230 +- Clarify customer order pagination. [#2241]https://github.com/bigcommerce/cornerstone/pull/2241 ## 6.5.0 (06-24-2022) - Category icons do not appear in Search Form [#2221]https://github.com/bigcommerce/cornerstone/pull/2221 diff --git a/templates/components/common/small-paginator.html b/templates/components/common/small-paginator.html index 331433e213..9fde7a0957 100644 --- a/templates/components/common/small-paginator.html +++ b/templates/components/common/small-paginator.html @@ -14,9 +14,11 @@ {{/if}} {{#if this.links.length}} -
  • {{lang 'common.paginator.page_of' current=this.current total=this.links.length}}
  • - {{else}} -
  • {{lang 'common.paginator.page_of' current=1 total=1}}
  • + {{#each this.links}} + +
  • {{this.number}}
  • +
    + {{/each}} {{/if}} {{#if next}}