Skip to content

Commit

Permalink
fix: #10 Export for Maven project (projectName = groupId:artifactId)
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume DESPREZ (T0128193) committed Jun 6, 2024
1 parent 9a6b0c4 commit c26278b
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 c26278b

Please sign in to comment.