Commit d5918498 by Johannes Schill

chore: Rename renderDataPanel to renderPanel

parent 01208ccd
......@@ -140,7 +140,7 @@ export class PanelChrome extends PureComponent<Props, State> {
);
}
renderDataPanel = (width: number, height: number): JSX.Element => {
renderPanel = (width: number, height: number): JSX.Element => {
const { panel } = this.props;
const { refreshCounter, timeRange } = this.state;
const { datasource, targets } = panel;
......@@ -191,7 +191,7 @@ export class PanelChrome extends PureComponent<Props, State> {
scopedVars={panel.scopedVars}
links={panel.links}
/>
{this.renderDataPanel(width, height)}
{this.renderPanel(width, height)}
</div>
);
}}
......
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