Skip to content

Commit

Permalink
refactor(dashboard): show portfolio vulnerabilities severity in footer
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Setch <[email protected]>
  • Loading branch information
setchy committed Jan 30, 2024
1 parent 1ee3b96 commit e5faf50
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/views/Dashboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
<b-progress height={} class="progress-xs mt-2 severity-low" :precision="1" v-bind:value="lowPercent"></b-progress>
</b-col>
<b-col class="mb-sm-2 mb-0">
<div class="text-muted">{{ $t('message.findings_audited') }}</div>
<strong>{{auditedFindings}} ({{auditedFindingPercent}}%)</strong>
<b-progress height={} class="progress-xs mt-2 status-failed" :precision="1" v-bind:value="auditedFindingPercent"></b-progress>
<div class="text-muted">{{ $t('severity.unassigned') }}</div>
<strong>{{unassigned}} ({{unassignedPercent}}%)</strong>
<b-progress height={} class="progress-xs mt-2 status-failed" :precision="1" v-bind:value="unassignedPercent"></b-progress>
</b-col>
</b-row>
</div>
Expand Down

0 comments on commit e5faf50

Please sign in to comment.