Skip to content

Commit 36d1992

Browse files
committed
chore(elements,h-grid): suppress schema prop
1 parent a3b015b commit 36d1992

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -574,6 +574,7 @@ export class IgxHierarchicalGridComponent extends IgxHierarchicalGridBaseDirecti
574574
return this._defaultExpandState;
575575
}
576576

577+
/* blazorSuppress */
577578
/**
578579
* Gets/Sets the schema for the hierarchical grid.
579580
* This schema defines the structure and properties of the data displayed in the grid.
@@ -592,6 +593,7 @@ export class IgxHierarchicalGridComponent extends IgxHierarchicalGridBaseDirecti
592593
this._hGridSchema = entities;
593594
}
594595

596+
/* blazorSuppress */
595597
public get schema() {
596598
if (!this._hGridSchema) {
597599
this._hGridSchema = this.generateSchema();
@@ -1233,8 +1235,8 @@ export class IgxHierarchicalGridComponent extends IgxHierarchicalGridBaseDirecti
12331235

12341236
private generateSchema() {
12351237
const filterableFields = this.columns.filter((column) => !column.columnGroup && column.filterable);
1236-
let entities: EntityType[];
1237-
1238+
let entities: EntityType[];
1239+
12381240
if(filterableFields.length !== 0) {
12391241
entities = [
12401242
{
@@ -1292,7 +1294,7 @@ export class IgxHierarchicalGridComponent extends IgxHierarchicalGridBaseDirecti
12921294

12931295
if (rowIslandChildEntities?.length > 0) {
12941296
childEntities = rowIslandChildEntities;
1295-
}
1297+
}
12961298

12971299
return {
12981300
name: entityName,

0 commit comments

Comments
 (0)