Skip to content

Commit

Permalink
fix: links
Browse files Browse the repository at this point in the history
  • Loading branch information
Szandor72 committed Nov 22, 2023
1 parent 9eb5825 commit b27da3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/ci/parse-scan-results.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ async function createGithubTable(jsonFilePath) {
const rowValues = Object.entries(row).reduce(
(acc, [key, value]) => {
if (key === 'ruleName') {
acc.push(`[${value}](${row.url})`); // Transforming ruleName into a Markdown link
acc.push(`<a href='${row.url}'>${value}</a>`); // Transforming ruleName into anchor link
} else if (!['endLine', 'endColumn', 'url'].includes(key)) {
acc.push(value.toString());
}
Expand Down

0 comments on commit b27da3f

Please sign in to comment.