Browse Source

decreased panel height in edit mode

Torkel Ödegaard 7 years ago
parent
commit
d843044841
1 changed files with 1 additions and 1 deletions
  1. 1 1
      public/app/features/dashboard/dashgrid/PanelResizer.tsx

+ 1 - 1
public/app/features/dashboard/dashgrid/PanelResizer.tsx

@@ -15,7 +15,7 @@ interface State {
 }
 
 export class PanelResizer extends PureComponent<Props, State> {
-  initialHeight: number = Math.floor(document.documentElement.scrollHeight * 0.4);
+  initialHeight: number = Math.floor(document.documentElement.scrollHeight * 0.3);
   prevEditorHeight: number;
   throttledChangeHeight: (height: number) => void;
   throttledResizeDone: () => void;