@skyux/list-builder-view-checklist 5.6.0 → 5.7.0

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.
@@ -690,12 +690,11 @@
690
690
  };
691
691
  SkyListViewChecklistComponent.prototype.reapplyFilter = function (isSelected) {
692
692
  var _this = this;
693
- var self = this;
694
693
  this.state
695
694
  .pipe(operators.map(function (state) { return state.filters; }), operators.take(1))
696
695
  .subscribe(function (filters) {
697
696
  filters = filters.filter(function (filter) { return filter.name !== 'show-selected'; });
698
- filters.push(self.getShowSelectedFilter(isSelected));
697
+ filters.push(_this.getShowSelectedFilter(isSelected));
699
698
  _this.dispatcher.filtersUpdate(filters);
700
699
  });
701
700
  };