Explore: fix table sizing with few rows (#66546)

This commit is contained in:
Giordano Ricci
2023-04-14 11:47:52 +01:00
committed by GitHub
parent ee166205cd
commit d84bbfd51b

View File

@@ -46,7 +46,7 @@ export class TableContainer extends PureComponent<Props> {
}
// 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() {