@theseam/ui-common 1.0.2-beta.86 → 1.0.2-beta.87

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.
@@ -3293,8 +3293,8 @@ class DatatableComponent {
3293
3293
  ]).pipe(map(([columns, columnActiveFilterProps]) => columns.map((col) => ({
3294
3294
  ...col,
3295
3295
  filterActive: columnActiveFilterProps.includes(this._columnsFilters.getColumnFilterProp(col) || ''),
3296
- }))));
3297
- this.displayColumns$ = this.columns$.pipe(switchMap((cols) => applyPrefs(cols)), map((cols) => cols.filter((c) => !c.hidden)), tap((v) => removeUnusedDiffs(v, this._colDiffersInp, this._colDiffersTpl)));
3296
+ }))), switchMap((cols) => applyPrefs(cols)));
3297
+ this.displayColumns$ = this.columns$.pipe(map((cols) => cols.filter((c) => !c.hidden)), tap((v) => removeUnusedDiffs(v, this._colDiffersInp, this._colDiffersTpl)));
3298
3298
  this.filters$ = combineLatest([
3299
3299
  this._menuBarsFiltersSubject.asObservable(),
3300
3300
  this._columnsFilters.columnsFilters$,