primeng 15.4.17-lts → 15.4.19-lts

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.
@@ -4487,7 +4487,9 @@ class ColumnFilter {
4487
4487
  }
4488
4488
  removeConstraint(filterMeta) {
4489
4489
  this.dt.filters[this.field] = this.dt.filters[this.field].filter((meta) => meta !== filterMeta);
4490
- this.dt._filter();
4490
+ if (!this.showApplyButton) {
4491
+ this.dt._filter();
4492
+ }
4491
4493
  }
4492
4494
  onOperatorChange(value) {
4493
4495
  this.dt.filters[this.field].forEach((filterMeta) => {