We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc10ad5 commit 0bb02b4Copy full SHA for 0bb02b4
src/app/grid-cellMerging/grid-cellMerging.component.ts
@@ -71,7 +71,7 @@ export class GridCellMergingComponent {
71
const length = INVOICE_DATA.length;
72
for (let i = 1; i <= 600_000; i++) {
73
const rnd = Math.floor(Math.random() * length);
74
- allData.push(INVOICE_DATA[rnd]);
+ allData.push(Object.assign({}, INVOICE_DATA[rnd]));
75
}
76
77
this.data = allData;
0 commit comments