Library panels: Adds description to library panels tab (#33428)

This commit is contained in:
kay delaney
2021-04-30 15:15:48 +01:00
committed by GitHub
parent 713260f6fa
commit 68ee4808c1

View File

@@ -74,7 +74,11 @@ export const VisualizationSelectPane: FC<Props> = ({ panel }) => {
const radioOptions: Array<SelectableValue<ListMode>> = [
{ label: 'Visualizations', value: ListMode.Visualizations },
{ label: 'Global panels', value: ListMode.Globals },
{
label: 'Library panels',
value: ListMode.Globals,
description: 'Reusable panels you can share between multiple dashboards.',
},
];
return (