mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Explore: fix table sizing with few rows (#66546)
This commit is contained in:
parent
ee166205cd
commit
d84bbfd51b
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user