Skip to content

Commit

Permalink
fix(datagrid): remove needless type assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
dtsanevmw committed May 9, 2024
1 parent c6e6a38 commit feb318b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/angular/src/data/datagrid/render/main-renderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ export class DatagridMainRenderer implements AfterContentInit, AfterViewInit, Af

private listenForColumnChanges() {
this.columnsService.columns.forEach((column, index) => {
this.columnsService.emitStateChange(column, { changes: [], columnIndex: index } as ColumnStateDiff);
this.columnsService.emitStateChange(column, { changes: [], columnIndex: index });
});
/*
Merges all column subject so we can track them at once
Expand Down

0 comments on commit feb318b

Please sign in to comment.