{plugin?.description &&
{plugin?.description}
}
- {!!plugin?.details?.links?.length && (
-
- {plugin.details.links.map((link, index) => (
-
- {index > 0 && ' | '}
-
- {link.name}
-
-
- ))}
-
- )}
{hasInstallControlWarning(plugin, isRemotePluginsAvailable, latestCompatibleVersion) && (
{
};
export const getStyles = (theme: GrafanaTheme2) => {
- return {
- subtitle: css({
- display: 'flex',
- flexDirection: 'column',
- gap: theme.spacing(1),
- }),
- };
+ return { subtitle: css({ display: 'flex', flexDirection: 'column', gap: theme.spacing(1) }) };
};