We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 173710e commit c5f715cCopy full SHA for c5f715c
1 file changed
libs/cdk/virtual-table/table-builder.component.ts
@@ -372,15 +372,8 @@ export class TableBuilder<T>
372
this.rendering = true;
373
const columnList: string[] = this.generateDisplayedColumns();
374
375
- if (this.sortable.notEmpty) {
376
- this.sortAndFilter().then((): void => {
377
- this.syncDrawColumns(columnList);
378
- this.emitRendered();
379
- });
380
- } else {
381
382
383
- }
+ this.syncDrawColumns(columnList);
+ this.emitRendered();
384
}
385
386
public toggleColumnVisibility(key?: Nullable<string>): void {
0 commit comments