Skip to content

Commit

Permalink
fix(groupcolumn): Implement constructor and super call
Browse files Browse the repository at this point in the history
Closes #3011
  • Loading branch information
rkaraivanov committed Nov 23, 2018
1 parent be284d6 commit 2273fce
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions projects/igniteui-angular/src/lib/grids/column.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1357,6 +1357,10 @@ export class IgxColumnGroupComponent extends IgxColumnComponent implements After
}

set width(val) { }

constructor(public gridAPI: GridBaseAPIService<IgxGridBaseComponent>, public cdr: ChangeDetectorRef) {
super(gridAPI, cdr);
}
}


Expand Down

0 comments on commit 2273fce

Please sign in to comment.