We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3785ef5 commit 73c5b72Copy full SHA for 73c5b72
1 file changed
src/components/AdpVulnerabilityEnrichment.vue
@@ -57,7 +57,12 @@
57
</thead>
58
<tbody>
59
<tr v-for="ssvc in ssvcs" :key="ssvc.key">
60
- <td data-label="Exploitation" style="width: 20%">{{ ssvc.exploitation }}</td>
+ <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>
66
<td data-label="Automatable" style="width: 10%">{{ ssvc.automatable }}</td>
67
<td data-label="Technical Impact" style="width: 30%">{{ ssvc['technical impact'] }}</td>
68
<td data-label="Version" style="width: 10%">{{ ssvc.version }}</td>
0 commit comments