Skip to content

Commit 62defab

Browse files
authored
ci: branch was auto-updated
2 parents 5e8d367 + 6eab6c7 commit 62defab

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

packages/ng-table-builder/src/table-builder.component.ts

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ import { SortableService } from './services/sortable/sortable.service';
4040
import { NgxTableViewChangesService } from './services/table-view-changes/ngx-table-view-changes.service';
4141
import { TemplateParserService } from './services/template-parser/template-parser.service';
4242

43-
const { TIME_IDLE, TIME_RELOAD, FRAME_TIME, MACRO_TIME, CHANGE_DELAY }: typeof TABLE_GLOBAL_OPTIONS =
44-
TABLE_GLOBAL_OPTIONS;
43+
const { TIME_IDLE, TIME_RELOAD, FRAME_TIME, MACRO_TIME }: typeof TABLE_GLOBAL_OPTIONS = TABLE_GLOBAL_OPTIONS;
4544

4645
@Component({
4746
selector: 'ngx-table-builder',
@@ -518,14 +517,10 @@ export class TableBuilderComponent<T>
518517
}
519518

520519
private preSortAndFilterTable(): void {
521-
this.ngZone.run((): void => {
522-
window.setTimeout((): void => {
523-
this.setSource(this.source);
524-
this.sortAndFilter().then((): void => {
525-
this.reCheckDefinitions();
526-
this.checkSelectionValue();
527-
});
528-
}, CHANGE_DELAY);
520+
this.setSource(this.source);
521+
this.sortAndFilter().then((): void => {
522+
this.reCheckDefinitions();
523+
this.checkSelectionValue();
529524
});
530525
}
531526

0 commit comments

Comments
 (0)