Skip to content

Commit

Permalink
Merge pull request #766 from LaVibeX/FixAliases
Browse files Browse the repository at this point in the history
Aliases column is not displaying information in Vulnerabilities section
  • Loading branch information
nscuro authored Mar 14, 2024
2 parents 268beac + f943b4f commit 482b143
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/portfolio/vulnerabilities/VulnerabilityList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export default {
formatter(value, row, index) {
if (typeof value !== 'undefined') {
let label = '';
const aliases = common.resolveVulnAliases(value);
const aliases = common.resolveVulnAliases(row.source, value);
for (let i = 0; i < aliases.length; i++) {
let alias = aliases[i];
let url = xssFilters.uriInUnQuotedAttr(
Expand Down

0 comments on commit 482b143

Please sign in to comment.