Skip to content

Commit b2fdd5a

Browse files
committed
fix(grid): Make sure border does not appear when new theme is loaded runtime.
1 parent 1871e49 commit b2fdd5a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

projects/igniteui-angular/core/src/core/styles/components/grid/_grid-theme.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1372,7 +1372,7 @@
13721372
}
13731373

13741374
%igx-grid__tr--merged {
1375-
border-block-end: 0;
1375+
border-block-end: 0 !important;
13761376
}
13771377

13781378
%igx-grid__tr--merged-top {

projects/igniteui-angular/grids/core/src/row.directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,7 @@ export class IgxRowDirective implements DoCheck, AfterViewInit, OnDestroy {
697697
const isPinned = this.pinned && !this.disabled;
698698
const indexInData = this.grid.isRowPinningToTop && !isPinned ? this.index - this.grid.pinnedRecordsCount : this.index;
699699
const size = this.grid.verticalScrollContainer.getSizeAt(indexInData);
700-
return (size - this.grid._borderSize) || this.grid.rowHeight;
700+
return size || this.grid.rowHeight;
701701
}
702702

703703
/**

0 commit comments

Comments
 (0)