mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Library panels: Adds description to library panels tab (#33428)
This commit is contained in:
parent
713260f6fa
commit
68ee4808c1
@ -74,7 +74,11 @@ export const VisualizationSelectPane: FC<Props> = ({ panel }) => {
|
|||||||
|
|
||||||
const radioOptions: Array<SelectableValue<ListMode>> = [
|
const radioOptions: Array<SelectableValue<ListMode>> = [
|
||||||
{ label: 'Visualizations', value: ListMode.Visualizations },
|
{ 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 (
|
return (
|
||||||
|
Loading…
Reference in New Issue
Block a user