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 c8e9699 commit 343e84aCopy full SHA for 343e84a
lib/extensions.js
@@ -35,7 +35,7 @@ function getAtRisk({matrices}) {
35
if(atRisk(row?.cells)) {
36
// do not include duplicate statements
37
if(!riskRows.find(r => r.id === row.id)) {
38
- const riskRow = structuredClone(row);
+ const riskRow = {...row};
39
riskRow.cells = [{state: 'failed'}];
40
riskRows.push(riskRow);
41
}
0 commit comments