From d84bbfd51b8cbc011742f980e03f4917021cad39 Mon Sep 17 00:00:00 2001 From: Giordano Ricci Date: Fri, 14 Apr 2023 11:47:52 +0100 Subject: [PATCH] Explore: fix table sizing with few rows (#66546) --- public/app/features/explore/TableContainer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/explore/TableContainer.tsx b/public/app/features/explore/TableContainer.tsx index 6e7795d9eb9..828dbeaebf4 100644 --- a/public/app/features/explore/TableContainer.tsx +++ b/public/app/features/explore/TableContainer.tsx @@ -46,7 +46,7 @@ export class TableContainer extends PureComponent { } // tries to estimate table height - return Math.max(Math.min(600, mainFrame.length * 35) + 35); + return Math.max(Math.min(600, mainFrame.length * 36) + 40 + 46); } render() {