GrafanaUI: Add icon to links on Plugin configuration page (#55581)

This commit is contained in:
lean.dev 2022-09-22 14:16:45 -03:00 committed by GitHub
parent 4c19e83ff0
commit 3ab4d543d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,7 +64,7 @@ export function PluginDetailsHeader({ plugin, currentUrl, parentUrl }: Props): R
{/* Links */}
{plugin.details?.links.map((link: any) => (
<a key={link.name} href={link.url}>
{link.name}
<Icon name="external-link-alt" size="sm" /> {link.name}
</a>
))}