From f9a130e5cd2e32d451856def61ba2833c8c52253 Mon Sep 17 00:00:00 2001 From: sacr3dc0w <5056945+sacr3dc0w@users.noreply.github.com> Date: Sat, 7 Feb 2026 20:05:30 -0800 Subject: [PATCH] fix(category): correct setLiveRegionsAttributes typo in reset handler --- CHANGELOG.md | 1 + assets/js/theme/category.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e74c48430f..93e1af42f2 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) - Fix shipment info showing for cancelled orders [#2654](https://github.com/bigcommerce/cornerstone/pull/2654) ## 6.19.1 (04-09-2026) 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(); }