Skip to content
Snippets Groups Projects

Resolve "License information not displayed in the left panel (new interface)"

1 file
+ 8
2
Compare changes
  • Side-by-side
  • Inline
@@ -90,8 +90,14 @@ export const ProjectInfoDrawer = (): JSX.Element => {
@@ -90,8 +90,14 @@ export const ProjectInfoDrawer = (): JSX.Element => {
)}
)}
{licenseExists && (
{licenseExists && (
<li className="mt-2 text-hyperlink-blue">
<li className="mt-2 text-hyperlink-blue">
<button type="button" onClick={onLicenseClick} className="text-base font-semibold">
<span className="text-black">License: </span>
License: {licenseName}
<button
 
type="button"
 
onClick={onLicenseClick}
 
className="truncate text-base font-semibold"
 
title={licenseName}
 
>
 
{licenseName}
</button>
</button>
</li>
</li>
)}
)}
Loading