Skip to content

Commit 04b360e

Browse files
committed
chore(*): Make lint happy
1 parent 7debf84 commit 04b360e

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
@@ -728,9 +728,9 @@ export class IgxTreeGridComponent extends IgxGridBaseDirective implements GridTy
728728
*/
729729
private deselectChildren(recordID): void {
730730
const selectedChildren = [];
731-
/* G.E. Apr 28, 2021 #9465 Records which are not in view can also be selected so we need to
732-
* deselect them as well, hence using 'records' map instead of getRowByKey() method which will
733-
* return only row components (i.e. records in view). */
731+
// G.E. Apr 28, 2021 #9465 Records which are not in view can also be selected so we need to
732+
// deselect them as well, hence using 'records' map instead of getRowByKey() method which will
733+
// return only row components (i.e. records in view).
734734
const rowToDeselect = this.records.get(recordID);
735735
this.selectionService.deselectRow(recordID);
736736
this._gridAPI.get_selected_children(rowToDeselect, selectedChildren);

0 commit comments

Comments
 (0)