@firestitch/list 9.11.2 → 9.11.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3615,8 +3615,8 @@ var ReorderController = /** @class */ (function () {
3615
3615
  return this._enabled$
3616
3616
  .pipe(map(function (enabled) {
3617
3617
  return enabled && _this.position === ReorderPosition.Left;
3618
- }), map(function () {
3619
- return _this._numberOfActiveFilters === 0;
3618
+ }), map(function (enabled) {
3619
+ return enabled && _this._numberOfActiveFilters === 0;
3620
3620
  }), distinctUntilChanged(), shareReplay());
3621
3621
  },
3622
3622
  enumerable: true,
@@ -3628,8 +3628,8 @@ var ReorderController = /** @class */ (function () {
3628
3628
  return this._enabled$
3629
3629
  .pipe(map(function (enabled) {
3630
3630
  return enabled && _this.position === ReorderPosition.Right;
3631
- }), map(function () {
3632
- return _this._numberOfActiveFilters === 0;
3631
+ }), map(function (enabled) {
3632
+ return enabled && _this._numberOfActiveFilters === 0;
3633
3633
  }), distinctUntilChanged(), shareReplay());
3634
3634
  },
3635
3635
  enumerable: true,