ngx-wapp-components 1.2.1 → 1.3.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.
@@ -3682,11 +3682,11 @@ class WPowerbiReportComponent {
3682
3682
  this.onRefreshNotAllowed();
3683
3683
  }
3684
3684
  }
3685
- async updateFilters(filter) {
3685
+ async updateFilters(filters) {
3686
3686
  try {
3687
3687
  const report = this.reportObj.getReport();
3688
3688
  await report.removeFilters();
3689
- await report.updateFilters(models.FiltersOperations.Add, [filter]);
3689
+ await report.updateFilters(models.FiltersOperations.Add, filters);
3690
3690
  }
3691
3691
  catch (error) {
3692
3692
  console.error(error);