|
@@ -76,14 +76,14 @@ export default function AppBasic({ icon, icon_background, name, type, hoverTip,
|
|
|
|
|
|
}
|
|
}
|
|
<div className="group">
|
|
<div className="group">
|
|
- <div className={`flex flex-row items-center text-sm font-semibold text-gray-700 group-hover:text-gray-900 ${textStyle?.main}`}>
|
|
|
|
|
|
+ <div className={`flex flex-row items-center text-sm font-semibold text-gray-700 group-hover:text-gray-900 break-all ${textStyle?.main ?? ''}`}>
|
|
{name}
|
|
{name}
|
|
{hoverTip
|
|
{hoverTip
|
|
&& <Tooltip content={hoverTip} selector={`a${randomString(16)}`}>
|
|
&& <Tooltip content={hoverTip} selector={`a${randomString(16)}`}>
|
|
<InformationCircleIcon className='w-4 h-4 ml-1 text-gray-400' />
|
|
<InformationCircleIcon className='w-4 h-4 ml-1 text-gray-400' />
|
|
</Tooltip>}
|
|
</Tooltip>}
|
|
</div>
|
|
</div>
|
|
- <div className={`text-xs font-normal text-gray-500 group-hover:text-gray-700 ${textStyle?.extra}`}>{type}</div>
|
|
|
|
|
|
+ <div className={`text-xs font-normal text-gray-500 group-hover:text-gray-700 break-all ${textStyle?.extra ?? ''}`}>{type}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
)
|