Skip to content

Commit 6a4e762

Browse files
committed
chore(*): fix failing tests
1 parent 607a60c commit 6a4e762

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
"@angular/platform-browser": "^10.1.0",
5353
"@angular/platform-browser-dynamic": "^10.1.0",
5454
"@angular/router": "^10.1.0",
55+
"@igniteui/material-icons-extended": "^2.3.0",
5556
"@types/hammerjs": "^2.0.36",
5657
"@types/source-map": "0.5.2",
5758
"classlist.js": "^1.1.20150312",
@@ -62,8 +63,8 @@
6263
"lodash.merge": "^4.6.2",
6364
"resize-observer-polyfill": "^1.5.1",
6465
"rxjs": "^6.6.3",
65-
"tslib": "^2.0.0",
6666
"setimmediate": "^1.0.5",
67+
"tslib": "^2.0.0",
6768
"web-animations-js": "^2.3.2",
6869
"zone.js": "~0.10.3"
6970
},

projects/igniteui-angular/src/lib/grids/grid-base.directive.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6441,8 +6441,7 @@ export abstract class IgxGridBaseDirective extends DisplayDensityBase implements
64416441
* @hidden @internal
64426442
*/
64436443
endRowTransaction(commit: boolean, row: IgxRow) {
6444-
const id = this.transactions.enabled && !row.id ? this.transactions.getStateByValue(row.data) : row.id;
6445-
row.newData = this.transactions.getAggregatedValue(id, true);
6444+
row.newData = this.transactions.getAggregatedValue(row.id, true);
64466445

64476446
let args = row.createEditEventArgs();
64486447

0 commit comments

Comments
 (0)