Browse Source

fix: When in tv-mode, autofitpanel should not take space from the navbar #15650

Johannes Schill 6 years ago
parent
commit
cc40a515be
1 changed files with 2 additions and 2 deletions
  1. 2 2
      public/app/features/dashboard/state/DashboardModel.ts

+ 2 - 2
public/app/features/dashboard/state/DashboardModel.ts

@@ -887,8 +887,8 @@ export class DashboardModel {
     }
     }
 
 
     // add back navbar height
     // add back navbar height
-    if (kioskMode === KIOSK_MODE_TV) {
-      visibleHeight += 55;
+    if (kioskMode && kioskMode !== KIOSK_MODE_TV) {
+      visibleHeight += navbarHeight;
     }
     }
 
 
     const visibleGridHeight = Math.floor(visibleHeight / (GRID_CELL_HEIGHT + GRID_CELL_VMARGIN));
     const visibleGridHeight = Math.floor(visibleHeight / (GRID_CELL_HEIGHT + GRID_CELL_VMARGIN));