File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
projects/igniteui-angular/src/lib/grids/hierarchical-grid Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -574,6 +574,7 @@ export class IgxHierarchicalGridComponent extends IgxHierarchicalGridBaseDirecti
574
574
return this . _defaultExpandState ;
575
575
}
576
576
577
+ /* blazorSuppress */
577
578
/**
578
579
* Gets/Sets the schema for the hierarchical grid.
579
580
* This schema defines the structure and properties of the data displayed in the grid.
@@ -592,6 +593,7 @@ export class IgxHierarchicalGridComponent extends IgxHierarchicalGridBaseDirecti
592
593
this . _hGridSchema = entities ;
593
594
}
594
595
596
+ /* blazorSuppress */
595
597
public get schema ( ) {
596
598
if ( ! this . _hGridSchema ) {
597
599
this . _hGridSchema = this . generateSchema ( ) ;
@@ -1233,8 +1235,8 @@ export class IgxHierarchicalGridComponent extends IgxHierarchicalGridBaseDirecti
1233
1235
1234
1236
private generateSchema ( ) {
1235
1237
const filterableFields = this . columns . filter ( ( column ) => ! column . columnGroup && column . filterable ) ;
1236
- let entities : EntityType [ ] ;
1237
-
1238
+ let entities : EntityType [ ] ;
1239
+
1238
1240
if ( filterableFields . length !== 0 ) {
1239
1241
entities = [
1240
1242
{
@@ -1292,7 +1294,7 @@ export class IgxHierarchicalGridComponent extends IgxHierarchicalGridBaseDirecti
1292
1294
1293
1295
if ( rowIslandChildEntities ?. length > 0 ) {
1294
1296
childEntities = rowIslandChildEntities ;
1295
- }
1297
+ }
1296
1298
1297
1299
return {
1298
1300
name : entityName ,
You can’t perform that action at this time.
0 commit comments