diff --git a/public/app/features/dashboard/dashgrid/DashboardPanel.tsx b/public/app/features/dashboard/dashgrid/DashboardPanel.tsx index 68d7852ead0..5ed258cde57 100644 --- a/public/app/features/dashboard/dashgrid/DashboardPanel.tsx +++ b/public/app/features/dashboard/dashgrid/DashboardPanel.tsx @@ -74,10 +74,12 @@ export class DashboardPanelUnconnected extends PureComponent { }; renderPanel(plugin: PanelPlugin) { - const { dashboard, panel, isFullscreen, isInView, isInEditMode, updateLocation } = this.props; + const { dashboard, panel, isFullscreen, isEditing, isInView, isInEditMode, updateLocation } = this.props; + + const autoSizerStyle = { height: isEditing ? '100%' : '' }; return ( - + {({ width, height }) => { if (width === 0) { return null;