diff --git a/CHANGELOG.md b/CHANGELOG.md index 52daaee40..bce3abecb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,12 @@ Changelog _Note: Gaps between patch versions are faulty, broken or test releases._ +## v3.75.1 (2024-11-26) + +#### :bug: Bug Fix + +* Fixed an issue where the stored items processors were not cleared on reset `base/b-virtual-scroll-new` + ## v3.75.0 (2024-11-25) #### :boom: Breaking Change diff --git a/src/base/b-virtual-scroll-new/CHANGELOG.md b/src/base/b-virtual-scroll-new/CHANGELOG.md index 521a1cadc..4836c17a5 100644 --- a/src/base/b-virtual-scroll-new/CHANGELOG.md +++ b/src/base/b-virtual-scroll-new/CHANGELOG.md @@ -9,6 +9,12 @@ Changelog > - :house: [Internal] > - :nail_care: [Polish] +## v3.75.1 (2024-11-26) + +#### :bug: Bug Fix + +* Fixed an issue where the stored items processors were not cleared on reset `base/b-virtual-scroll-new` + ## v3.75.0 (2024-11-25) #### :boom: Breaking Change diff --git a/src/base/b-virtual-scroll-new/b-virtual-scroll-new.ts b/src/base/b-virtual-scroll-new/b-virtual-scroll-new.ts index 99cb19221..b357521f0 100644 --- a/src/base/b-virtual-scroll-new/b-virtual-scroll-new.ts +++ b/src/base/b-virtual-scroll-new/b-virtual-scroll-new.ts @@ -283,6 +283,7 @@ export default class bVirtualScrollNew extends iVirtualScrollHandlers implements * Resets the component state to its initial state */ protected reset(): void { + this.currentItemsProcessors = undefined; this.onReset(); }