diff --git a/src/components/Map/Drawer/ProjectInfoDrawer/ProjectInfoDrawer.component.tsx b/src/components/Map/Drawer/ProjectInfoDrawer/ProjectInfoDrawer.component.tsx
index 9bf8267cdfde579330b19eb9cb221e79b0c2ad30..3d92366ef43188b3c75df84ac204b9e55a592137 100644
--- a/src/components/Map/Drawer/ProjectInfoDrawer/ProjectInfoDrawer.component.tsx
+++ b/src/components/Map/Drawer/ProjectInfoDrawer/ProjectInfoDrawer.component.tsx
@@ -90,8 +90,14 @@ export const ProjectInfoDrawer = (): JSX.Element => {
           )}
           {licenseExists && (
             <li className="mt-2 text-hyperlink-blue">
-              <button type="button" onClick={onLicenseClick} className="text-base font-semibold">
-                License: {licenseName}
+              <span className="text-black">License: </span>
+              <button
+                type="button"
+                onClick={onLicenseClick}
+                className="truncate text-base font-semibold"
+                title={licenseName}
+              >
+                {licenseName}
               </button>
             </li>
           )}