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.
@@ -4477,7 +4477,9 @@ class ColumnFilter {
4477
4477
  }
4478
4478
  removeConstraint(filterMeta) {
4479
4479
  this.dt.filters[this.field] = this.dt.filters[this.field].filter((meta) => meta !== filterMeta);
4480
- this.dt._filter();
4480
+ if (!this.showApplyButton) {
4481
+ this.dt._filter();
4482
+ }
4481
4483
  }
4482
4484
  onOperatorChange(value) {
4483
4485
  this.dt.filters[this.field].forEach((filterMeta) => {