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 @@ -76,7 +76,7 @@ export default {
const href = router.resolve({
name: 'Project',
params: { uuid: row.uuid },
}).href;
}).route.fullPath;
return `<a href="${href}">${xssFilters.inHTMLData(value)}</a>`;
},
},
Expand Down
2 changes: 1 addition & 1 deletion src/views/portfolio/projects/ProjectList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ export default {
this.routerFunc().resolve({
name: 'Project',
params: { uuid: row.uuid },
}).href,
}).route.fullPath,
);
let collectionIcon = '';
if (row.collectionLogic !== 'NONE') {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default {
const href = router.resolve({
name: 'Project',
params: { uuid: row.uuid },
}).href;
}).route.fullPath;
return `<a href="${href}">${xssFilters.inHTMLData(value)}</a>`;
},
},
Expand Down
2 changes: 1 addition & 1 deletion src/views/portfolio/tags/TaggedProjectListModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export default {
const href = router.resolve({
name: 'Project',
params: { uuid: row.uuid },
}).href;
}).route.fullPath;
return `<a href="${href}">${xssFilters.inHTMLData(value)}</a>`;
},
},
Expand Down
2 changes: 1 addition & 1 deletion src/views/portfolio/vulnerabilities/AffectedProjects.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default {
const url = this.$router.resolve({
name: 'Project Vulnerability Lookup',
params: { uuid: row.uuid, vulnerability: this.vulnerability },
}).href;
}).route.fullPath;

let html = `<a href="${url}">${xssFilters.inHTMLData(value)}</a>`;
if (row.dependencyGraphAvailable) {
Expand Down
Loading