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

pull/15767/head
Johannes Schill 7 years ago
parent b4df0e73cd
commit cc40a515be
  1. 4
      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));

Loading…
Cancel
Save