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.
1 parent a09c10e commit e45feebCopy full SHA for e45feeb
ui/src/utils/metrics.ts
@@ -222,9 +222,10 @@ export function buildVulnerabilityColumns(
222
style: tagStyle
223
}, { default: () => row.type })
224
225
- if (isSuppressed) {
+ // Show info icon for any finding with an analysis state
226
+ if (row.analysisState) {
227
const tooltipContent = [
- `State: ${row.analysisState || 'Unknown'}`,
228
+ `State: ${row.analysisState}`,
229
h('br'),
230
`Date: ${row.analysisDate ? new Date(row.analysisDate).toLocaleString('en-CA', {hour12: false}) : 'Unknown'}`
231
]
0 commit comments