@porscheinformatik/material-addons 14.0.1-beta.2 → 14.1.1

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.
@@ -2020,8 +2020,10 @@ class DataTableComponent {
2020
2020
  }
2021
2021
  }
2022
2022
  ngAfterViewInit() {
2023
- this.dataSource.paginator = this.paginator;
2024
- this.dataSource.sort = this.sort;
2023
+ if (!this.useAsync) {
2024
+ this.dataSource.paginator = this.paginator;
2025
+ this.dataSource.sort = this.sort;
2026
+ }
2025
2027
  }
2026
2028
  onColumnSettings(definition) {
2027
2029
  this.showColumnModal = true;