Explorar el Código

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

Johannes Schill hace 6 años
padre
commit
cc40a515be
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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
-    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));