Skip to content

Commit

Permalink
feat: update
Browse files Browse the repository at this point in the history
  • Loading branch information
Allen Zhang (张涛) committed Jul 8, 2024
1 parent de16e3f commit 90c060d
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,18 @@ export class GetProjectChartDataService {
projectID: projectID,
covType: 'all',
branch: defaultBranch === '-' ? null : defaultBranch,
NOT: {
summary: {
path: ['statements','covered'],
equals: 0,
},
},
}),
orderBy: {
updatedAt: 'desc',
},
});

const summarys = [];
// console.log(allCovTypeCoverages, 'allCovTypeCoverages');
return allCovTypeCoverages
.map((item) => {
return {
Expand All @@ -33,6 +37,5 @@ export class GetProjectChartDataService {
};
})
.reverse();
// .slice(-10);
}
}

0 comments on commit 90c060d

Please sign in to comment.