diff --git a/CHANGELOG.md b/CHANGELOG.md index 952b83e9c1..fbd75c4197 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 +- Fixed typo in category page reset-filters live region handler [#2643](https://github.com/bigcommerce/cornerstone/pull/2643) - Swap content/data keys in onProductOptionsChanged event detail [#2640](https://github.com/bigcommerce/cornerstone/pull/2640) - Fix shipment info showing for cancelled orders [#2654](https://github.com/bigcommerce/cornerstone/pull/2654) diff --git a/assets/js/theme/category.js b/assets/js/theme/category.js index 8387e2f6fe..e4d20af48d 100644 --- a/assets/js/theme/category.js +++ b/assets/js/theme/category.js @@ -53,7 +53,7 @@ export default class Category extends CatalogPage { $('input[name="price_max"]').attr('value', urlParams.get('price_max')); } - $('a.reset-btn').on('click', () => this.setLiveRegionsAttributes($('span.reset-message'), 'status', 'polite')); + $('a.reset-btn').on('click', () => this.setLiveRegionAttributes($('span.reset-message'), 'status', 'polite')); this.ariaNotifyNoProducts(); }