Panels: Fixed size issue with panels when existing panel edit mode (#22912)

(cherry picked from commit 8e131384e3)
This commit is contained in:
Torkel Ödegaard
2020-03-20 14:13:09 +01:00
committed by Leonard Gram
parent e95667fffb
commit 63dfdb7066
@@ -72,10 +72,12 @@ export class DashboardPanelUnconnected extends PureComponent<Props, State> {
};
renderPanel(plugin: PanelPlugin) {
const { dashboard, panel, isFullscreen, isInView, isInEditMode } = this.props;
const { dashboard, panel, isFullscreen, isEditing, isInView, isInEditMode } = this.props;
const autoSizerStyle = { height: isEditing ? '100%' : '' };
return (
<AutoSizer>
<AutoSizer style={autoSizerStyle}>
{({ width, height }) => {
if (width === 0) {
return null;