Skip to content

Commit 16c16f4

Browse files
MKirovaMKirova
authored andcommitted
chore(*): Fix lint.
1 parent 1df54da commit 16c16f4

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

projects/igniteui-angular/src/lib/grids/pivot-grid/pivot-row-dimension-content.component.ts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -113,20 +113,14 @@ export class IgxPivotRowDimensionContentComponent extends IgxGridHeaderRowCompon
113113
return this.rowData[col.field + this.grid.pivotKeys.rowDimensionSeparator + this.grid.pivotKeys.level];
114114
}
115115

116-
get rowSpan() {
116+
public get rowSpan() {
117117
return this.rowData[this.rowDimensionData.dimension.memberName + this.grid.pivotKeys.rowDimensionSeparator + 'rowSpan'] || 1;
118118
}
119119

120-
get headerHeight() {
120+
public get headerHeight() {
121121
return this.rowSpan * this.grid.rowHeight + (this.rowSpan - 1);
122122
}
123123

124-
get isFirst() {
125-
const hasRowSpan = this.rowSpan && this.rowSpan > 1;
126-
return !hasRowSpan || this.rowData[this.rowDimensionData.dimension.memberName + this.grid.pivotKeys.rowDimensionSeparator + 'first'];
127-
}
128-
129-
130124
/**
131125
* @hidden @internal
132126
*/

0 commit comments

Comments
 (0)