Commit cdc99e12 by Dominik Prokop

React graph panel options component rename

parent 1618e908
......@@ -9,7 +9,7 @@ import { Switch } from 'app/core/components/Switch/Switch';
import { PanelOptionsProps } from '@grafana/ui';
import { Options } from './types';
export class GraphOptions extends PureComponent<PanelOptionsProps<Options>> {
export class GraphPanelOptions extends PureComponent<PanelOptionsProps<Options>> {
onToggleLines = () => {
this.props.onChange({ ...this.props.options, showLines: !this.props.options.showLines });
};
......
import { GraphPanel } from './GraphPanel';
import { GraphOptions } from './GraphOptions';
import { GraphPanelOptions } from './GraphPanelOptions';
export { GraphPanel as Panel, GraphOptions as PanelOptions };
export { GraphPanel as Panel, GraphPanelOptions as PanelOptions };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment