Skip to content

Commit

Permalink
chore(*): reverting back the 1px for the thead
Browse files Browse the repository at this point in the history
  • Loading branch information
mpavlinov committed Jan 16, 2019
1 parent 80f494a commit 78f2ce3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3453,7 +3453,7 @@ export abstract class IgxGridBaseComponent extends DisplayDensityBase implements
// TODO: Calculate based on grid density
if (this.maxLevelHeaderDepth) {
this.theadRow.nativeElement.style.height = `${(this.maxLevelHeaderDepth + 1) * this.defaultRowHeight +
(this.allowFiltering ? this._rowHeight : 0)}px`;
(this.allowFiltering ? this._rowHeight : 0) + 1}px`;
}

if (!this._height) {
Expand Down

0 comments on commit 78f2ce3

Please sign in to comment.