This commit is contained in:
Hugo Häggmark
2019-03-04 10:42:59 +01:00
parent 328eea3a29
commit 3a65e27e83
6 changed files with 23 additions and 7 deletions

View File

@@ -1,6 +1,7 @@
import React, { Component } from 'react';
import classNames from 'classnames';
import { isEqual } from 'lodash';
import { ScopedVars } from '@grafana/ui';
import PanelHeaderCorner from './PanelHeaderCorner';
import { PanelHeaderMenu } from './PanelHeaderMenu';
@@ -16,7 +17,7 @@ export interface Props {
timeInfo: string;
title?: string;
description?: string;
scopedVars?: string;
scopedVars?: ScopedVars;
links?: [];
error?: string;
isFullscreen: boolean;

View File

@@ -1,6 +1,7 @@
import React, { Component } from 'react';
import Remarkable from 'remarkable';
import { Tooltip } from '@grafana/ui';
import { Tooltip, ScopedVars } from '@grafana/ui';
import { PanelModel } from 'app/features/dashboard/state/PanelModel';
import templateSrv from 'app/features/templating/template_srv';
import { LinkSrv } from 'app/features/panel/panellinks/link_srv';
@@ -16,7 +17,7 @@ interface Props {
panel: PanelModel;
title?: string;
description?: string;
scopedVars?: string;
scopedVars?: ScopedVars;
links?: [];
error?: string;
}