Skip to content

Commit

Permalink
fix: Accenture#10 Export for Maven project (projectName = groupId:art…
Browse files Browse the repository at this point in the history
…ifactId)
  • Loading branch information
Guillaume DESPREZ (T0128193) committed Jun 6, 2024
1 parent 2f3dc62 commit ef00771
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EcoSonar-API/services/exportAuditService.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ function formatExcelSheet (urlName, index, workbook, projectName, analysis, date
if (urlName !== '') {
sheet = workbook.addWorksheet('url' + index)
} else {
sheet = workbook.addWorksheet(projectName)
sheet = workbook.addWorksheet(projectName.replace(":", " "))
}
let row = sheet.getRow(1)
row.getCell(1).value = 'EcoSonar Analysis'
Expand Down

0 comments on commit ef00771

Please sign in to comment.