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
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 ,
You can’t perform that action at this time.
0 commit comments