diff --git a/public/app/features/dashboard/components/ShareModal/ShareLink.tsx b/public/app/features/dashboard/components/ShareModal/ShareLink.tsx index aed198c8195..75a882df541 100644 --- a/public/app/features/dashboard/components/ShareModal/ShareLink.tsx +++ b/public/app/features/dashboard/components/ShareModal/ShareLink.tsx @@ -1,6 +1,6 @@ import React, { PureComponent } from 'react'; import { e2e } from '@grafana/e2e'; -import { LegacyForms, ClipboardButton, Icon } from '@grafana/ui'; +import { LegacyForms, ClipboardButton, Icon, InfoBox } from '@grafana/ui'; const { Select, Switch } = LegacyForms; import { SelectableValue, PanelModel, AppEvents } from '@grafana/data'; import { DashboardModel } from 'app/features/dashboard/state'; @@ -135,6 +135,22 @@ export class ShareLink extends PureComponent { )} + {panel && !config.rendererAvailable && ( + +

+ <>To render a panel image, you must install the + + Grafana Image Renderer plugin + + . Please contact your Grafana administrator to install the plugin. +

+
+ )}