File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
projects/igniteui-angular/src/lib/grids Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -2807,7 +2807,7 @@ export class IgxGridBaseDirective extends DisplayDensityBase implements
28072807 return ;
28082808 }
28092809
2810- if ( this . overlayService . getOverlayById ( event . id ) . settings . outlet === this . outletDirective &&
2810+ if ( this . overlayService . getOverlayById ( event . id ) ? .settings . outlet === this . outletDirective &&
28112811 this . overlayIDs . indexOf ( event . id ) < 0 ) {
28122812 this . overlayIDs . push ( event . id ) ;
28132813 }
@@ -6075,6 +6075,7 @@ export class IgxGridBaseDirective extends DisplayDensityBase implements
60756075 * @hidden @internal
60766076 */
60776077 endRowTransaction ( commit : boolean , row : IgxRow ) {
6078+ console . log ( 'end row transaction' ) ;
60786079 row . newData = this . transactions . getAggregatedValue ( row . id , true ) ;
60796080
60806081 let args = row . createEditEventArgs ( ) ;
Original file line number Diff line number Diff line change @@ -2068,7 +2068,7 @@ fix.detectChanges();
20682068 grid . deleteRow ( 1 ) ;
20692069 tick ( 16 ) ;
20702070 fix . detectChanges ( ) ;
2071- spyOn ( grid , 'endRowTransaction' ) ;
2071+ spyOn ( grid , 'endRowTransaction' ) . and . callThrough ( ) ;
20722072
20732073 const firstCell = grid . getCellByColumn ( 2 , 'ProductName' ) ;
20742074 UIInteractions . simulateDoubleClickAndSelectCellEvent ( firstCell ) ;
You can’t perform that action at this time.
0 commit comments