mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
PluginBrowse: Fix double margin due to paragraph tag inside description (#66776)
This commit is contained in:
parent
b47b8798d3
commit
5c129455f6
@ -65,12 +65,15 @@ export default function Browse({ route }: GrafanaRouteComponentProps): ReactElem
|
||||
}
|
||||
|
||||
const subTitle = config.featureToggles.dataConnectionsConsole ? (
|
||||
<p>
|
||||
<div>
|
||||
Extend the Grafana experience with panel plugins and apps. To find more data sources go to{' '}
|
||||
<a href={`${CONNECTIONS_ROUTES.ConnectData}?cat=data-source`}>Connections</a>.
|
||||
</p>
|
||||
<a className="external-link" href={`${CONNECTIONS_ROUTES.ConnectData}?cat=data-source`}>
|
||||
Connections
|
||||
</a>
|
||||
.
|
||||
</div>
|
||||
) : (
|
||||
<p>Extend the Grafana experience with panel plugins and apps.</p>
|
||||
<div>Extend the Grafana experience with panel plugins and apps.</div>
|
||||
);
|
||||
|
||||
return (
|
||||
|
Loading…
Reference in New Issue
Block a user