forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
508 B
11 lines
508 B
import { DocsId } from '@grafana/data';
|
|
|
|
// TODO: Documentation links
|
|
const DOCS_LINKS: Record<DocsId, string> = {
|
|
[DocsId.Transformations]: 'https://grafana.com/docs/grafana/latest/panels/transformations',
|
|
[DocsId.FieldConfig]: 'https://grafana.com/docs/grafana/latest/panels/field-configuration-options/',
|
|
[DocsId.FieldConfigOverrides]:
|
|
'https://grafana.com/docs/grafana/latest/panels/field-configuration-options/#override-a-field',
|
|
};
|
|
|
|
export const getDocsLink = (id: DocsId) => DOCS_LINKS[id];
|
|
|