Skip to content

Commit feec1cf

Browse files
Adding UI support for specifying project classifier DependencyTrack/dependency-track#1185
Signed-off-by: Steve Springett <[email protected]>
1 parent 9a79249 commit feec1cf

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/views/portfolio/projects/ProjectList.vue

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@
4242
if (tag) {
4343
url += "/tag/" + encodeURIComponent(tag);
4444
}
45+
let classifier = this.$route.query.classifier;
46+
if (classifier) {
47+
url += "/classifier/" + encodeURIComponent(classifier);
48+
}
4549
if (this.showInactiveProjects === undefined) {
4650
url += "?excludeInactive=true";
4751
} else {

0 commit comments

Comments
 (0)