Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -305,8 +305,8 @@ export class ContainersService {
const score = vul.score !== undefined ? vul.score : '';
const score_v3 = vul.score_v3 !== undefined ? vul.score_v3 : '';
const package_name = vul.package_name || '';
const package_version = vul.package_version || '';
const fixed_version = vul.fixed_version || '';
const package_version = `"${vul.package_version || ''}"`;
const fixed_version = `"${vul.fixed_version || ''}"`;
const description = vul.description
? `"${vul.description.replace(/"/g, '""')}"`
: '';
Expand Down
4 changes: 2 additions & 2 deletions admin/webapp/websrc/app/common/services/nodes.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ export class NodesService {
const score = vul.score !== undefined ? vul.score : '';
const score_v3 = vul.score_v3 !== undefined ? vul.score_v3 : '';
const package_name = vul.package_name || '';
const package_version = vul.package_version || '';
const fixed_version = vul.fixed_version || '';
const package_version = `"${vul.package_version || ''}"`;
const fixed_version = `"${vul.fixed_version || ''}"`;
const description = vul.description
? `"${vul.description.replace(/"/g, '""')}"`
: '';
Expand Down