Skip to content

Commit 3483882

Browse files
authored
Merge pull request #3577 from CVEProject/rl-published-cve-count
CVE Count: Get "Published" Count ONLY (don't include "Rejected" Count)
2 parents ff5177e + 5a190bc commit 3483882

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/views/Home.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ export default {
7474
},
7575
methods: {
7676
getCVERecordsCount() {
77-
const countUrl = `${this.GenericGlobalsStore.currentServicesUrl}/api/cve_count`;
77+
const countUrl = this.GenericGlobalsStore.currentServicesUrl
78+
+ '/api/cve_count?state=published';
7879
7980
axios
8081
.get(countUrl)

0 commit comments

Comments
 (0)