@indice/ng-components 0.2.158 → 0.2.159

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.
@@ -2990,7 +2990,7 @@ class BaseListComponent {
2990
2990
  this.pageSize = 20;
2991
2991
  this.count = 0;
2992
2992
  this.sort = '';
2993
- this.sortdir = '-';
2993
+ this.sortdir = '';
2994
2994
  this.search = '';
2995
2995
  this.sortOptions = [];
2996
2996
  this.metaItems = [];
@@ -3043,9 +3043,9 @@ class BaseListComponent {
3043
3043
  if (params.get('sort') !== this.sort) {
3044
3044
  this.sort = params.get('sort');
3045
3045
  }
3046
- if (params.get('sortdir') !== this.sortdir) {
3047
- this.sortdir = params.get('sortdir');
3048
- }
3046
+ // if (params.get('sortdir') !== this.sortdir) {
3047
+ // this.sortdir = params.get('sortdir');
3048
+ // }
3049
3049
  });
3050
3050
  // just to sync params in query
3051
3051
  this.setRouteParams(true);