Skip to content

Commit 73c5b72

Browse files
committed
#2955 added red badge to active ssvcs
1 parent 3785ef5 commit 73c5b72

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/components/AdpVulnerabilityEnrichment.vue

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,12 @@
5757
</thead>
5858
<tbody>
5959
<tr v-for="ssvc in ssvcs" :key="ssvc.key">
60-
<td data-label="Exploitation" style="width: 20%">{{ ssvc.exploitation }}</td>
60+
<td data-label="Exploitation" style="width: 20%">
61+
<span :class="{'is-danger tag has-text-weight-bold is-uppercase' : ssvc.exploitation === 'active'}">
62+
{{ ssvc.exploitation }}
63+
</span>
64+
65+
</td>
6166
<td data-label="Automatable" style="width: 10%">{{ ssvc.automatable }}</td>
6267
<td data-label="Technical Impact" style="width: 30%">{{ ssvc['technical impact'] }}</td>
6368
<td data-label="Version" style="width: 10%">{{ ssvc.version }}</td>

0 commit comments

Comments
 (0)