Skip to content

Commit 42c63e2

Browse files
MKirovaMKirova
authored andcommitted
chore(*): Apply review comments.
1 parent 8a04f3a commit 42c63e2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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
@@ -209,7 +209,7 @@ export class IgxGridComponent extends IgxGridBaseDirective implements GridType,
209209
* @internal
210210
*/
211211
@ContentChildren(IgxGroupByRowSelectorDirective, { read: TemplateRef, descendants: false })
212-
protected groupByRowSelectorsTemplates: QueryList<TemplateRef<any>>;
212+
protected groupByRowSelectorsTemplates: QueryList<TemplateRef<IgxGroupByRowSelectorTemplateContext>>;
213213

214214
@ViewChildren(IgxGridGroupByRowComponent, { read: IgxGridGroupByRowComponent })
215215
private _groupsRowList: QueryList<IgxGridGroupByRowComponent>;
@@ -268,7 +268,7 @@ export class IgxGridComponent extends IgxGridBaseDirective implements GridType,
268268
private _hideGroupedColumns = false;
269269
private _dropAreaMessage = null;
270270
private _showGroupArea = true;
271-
private _groupByRowSelectorTemplate: TemplateRef<any>;
271+
private _groupByRowSelectorTemplate: TemplateRef<IgxGroupByRowSelectorTemplateContext>;
272272

273273
/**
274274
* Gets/Sets the array of data that populates the `IgxGridComponent`.

projects/igniteui-angular/src/lib/test-utils/grid-samples.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1598,7 +1598,7 @@ export class DynamicColumnsComponent extends GridWithSizeComponent {
15981598
<ng-template #customHeader igxHeadSelector let-headContext>
15991599
<span>CUSTOM HEADER SELECTOR</span>
16001600
</ng-template>
1601-
<ng-template #customGroupRow igxHeadSelector let-headContext>
1601+
<ng-template #customGroupRow igxGroupByRowSelector>
16021602
<span>CUSTOM GROUP SELECTOR</span>
16031603
</ng-template>
16041604
`

0 commit comments

Comments
 (0)