Skip to content

Commit 6cd1fdf

Browse files
committed
chore(*): fix a typo in renaming
1 parent 8a221c1 commit 6cd1fdf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/igniteui-angular/src/lib/grids/grid/grid.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -702,10 +702,10 @@ export class IgxGridComponent extends IgxGridBaseDirective implements GridType,
702702

703703
@Input()
704704
public get showGroupArea(): boolean {
705-
return this.showGroupArea;
705+
return this._showGroupArea;
706706
}
707707
public set showGroupArea(value: boolean) {
708-
this.showGroupArea = value;
708+
this._showGroupArea = value;
709709
}
710710

711711
private _setGroupColsVisibility(value) {

0 commit comments

Comments
 (0)