We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents df995f5 + 2196f55 commit f3b6a0cCopy full SHA for f3b6a0c
src/views/portfolio/projects/ComponentVulnerabilities.vue
@@ -92,7 +92,32 @@
92
formatter(value, row, index) {
93
return value === true ? '<i class="fa fa-check-square-o" />' : "";
94
},
95
- }
+ },
96
+ {
97
+ title: this.$t('message.cvss'),
98
+ field: "cvssV3BaseScore",
99
+ sortable: true,
100
+ visible: false,
101
+ formatter(value, row, index) {
102
+ if (value && typeof value === 'number') {
103
+ return value.toFixed(1);
104
+ } else {
105
+ return null;
106
+ }
107
108
109
110
+ title: this.$t('message.epss'),
111
+ field: "epssScore",
112
113
+ visible: false
114
115
116
+ title: this.$t('message.epss_percentile'),
117
+ field: "epssPercentile",
118
119
120
121
],
122
data: [],
123
options: {
0 commit comments