File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
src/components/AnalyzedArtifactsList Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -331,12 +331,14 @@ export const AnalyzedArtifactsList = ({
331
331
< DescriptionListDescription >
332
332
{ analyzedArtifact . licenses && analyzedArtifact . licenses . length > 0 ? (
333
333
analyzedArtifact . licenses . map ( ( license , index ) => (
334
- < span key = { index } >
335
- < a href = { license . url } target = "_blank" rel = "noopener noreferrer" >
336
- { license . spdxLicenseId }
337
- </ a >
338
- { index < analyzedArtifact . licenses ! . length - 1 && ', ' }
339
- </ span >
334
+ < TooltipWrapper tooltip = { license . sourceUrl } >
335
+ < span key = { index } >
336
+ < a href = { license . url } target = "_blank" rel = "noopener noreferrer" >
337
+ { license . spdxLicenseId }
338
+ </ a >
339
+ { index < analyzedArtifact . licenses ! . length - 1 && ', ' }
340
+ </ span >
341
+ </ TooltipWrapper >
340
342
) )
341
343
) : (
342
344
< >
You can’t perform that action at this time.
0 commit comments