File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ const VulnerabilitiesTable: FC<{
2828 < tbody >
2929 { vulnerabilities . map ( ( vulnerability , i ) => (
3030 < tr key = { i } >
31- < td >
31+ < td data-label = { t ( 'components.eolModal.table.cves' ) } >
3232 { vulnerability . cve . map ( cveId => (
3333 < div key = { cveId } >
3434 < LinkWithArrow
@@ -43,13 +43,16 @@ const VulnerabilitiesTable: FC<{
4343
4444 { vulnerability . cve . length > 0 || '-' }
4545 </ td >
46- < td >
46+ < td data-label = { t ( 'components.eolModal.table.severity' ) } >
4747 < VulnerabilityChip severity = { vulnerability . severity } />
4848 </ td >
49- < td className = { maxWidth } >
49+ < td
50+ data-label = { t ( 'components.eolModal.table.overview' ) }
51+ className = { maxWidth }
52+ >
5053 { vulnerability . description || vulnerability . overview || '-' }
5154 </ td >
52- < td >
55+ < td data-label = { t ( 'components.eolModal.table.details' ) } >
5356 { vulnerability . url && (
5457 < LinkWithArrow
5558 href = { vulnerability . url }
You can’t perform that action at this time.
0 commit comments