Skip to content

Commit 2b2c53c

Browse files
committed
chore(*): Make lint happy
1 parent 9db4608 commit 2b2c53c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid-summaries.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,7 @@ describe('IgxTreeGrid - Summaries #tGrid', () => {
817817
treeGrid.deleteRow(847);
818818
fix.detectChanges();
819819
tick();
820-
820+
821821
let summaryRow = GridSummaryFunctions.getRootSummaryRow(fix);
822822
GridSummaryFunctions.verifyColumnSummaries(summaryRow, 1, ['Count'], ['3']);
823823
GridSummaryFunctions.verifyColumnSummaries(summaryRow, 3, ['Min', 'Max'], ['49', '61']);

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -693,9 +693,9 @@ export class IgxTreeGridComponent extends IgxGridBaseDirective implements GridTy
693693
*/
694694
private deselectChildren(recordID): void {
695695
const selectedChildren = [];
696-
/* G.E. Apr 28, 2021 #9465 Records which are not in view can also be selected so we need to
697-
* deselect them as well, hence using 'records' map instead of getRowByKey() method which will
698-
* return only row components (i.e. records in view). */
696+
// G.E. Apr 28, 2021 #9465 Records which are not in view can also be selected so we need to
697+
// deselect them as well, hence using 'records' map instead of getRowByKey() method which will
698+
// return only row components (i.e. records in view).
699699
const rowToDeselect = this.records.get(recordID);
700700
this.selectionService.deselectRow(recordID);
701701
this._gridAPI.get_selected_children(rowToDeselect, selectedChildren);

0 commit comments

Comments
 (0)