File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
projects/angular/components/ui-grid/src Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 522522 </ div >
523523
524524 < ng-container *ngFor ="let column of renderedColumns.freeColumns; let lastColumn = last; let columnIndex = index ">
525- < div *ngLet ="(+(column.directive.widthPx$ | async)! + (lastColumn ? (+(deficit$ | async)!) : 0)) as widthPx "
525+ < div *ngLet ="(+(column.directive.widthPx$ | async)! + (lastColumn ? (+(deficit$ | async)!) : 0) + (lastColumn && isScrollable ? 50 : 0) ) as widthPx "
526526 [class.ui-grid-primary] ="column.directive.primary "
527527 [class.ui-grid-secondary] ="!column.directive.primary "
528528 [class.ui-grid-state-resizing] ="column.directive === resizeManager.current?.column "
Original file line number Diff line number Diff line change @@ -554,7 +554,7 @@ ui-grid {
554554 }
555555
556556 .invisible-refresh {
557- opacity : 0 ;
557+ display : none ;
558558 }
559559 }
560560
Original file line number Diff line number Diff line change @@ -883,6 +883,7 @@ export class UiGridComponent<T extends IGridDataEntry>
883883 isOverflown$ = iif ( ( ) => this . isScrollable , this . minWidth$ . pipe (
884884 map ( minWidth => this . _isOverflown ( minWidth ) ) ,
885885 distinctUntilChanged ( ) ,
886+ shareReplay ( 1 ) ,
886887 ) , of ( false ) ) ;
887888
888889 tableOverflowStyle$ = this . isOverflown$ . pipe (
You can’t perform that action at this time.
0 commit comments