mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
TablePanel: Makes footer not overlap table content (#44210)
This commit is contained in:
@@ -126,7 +126,7 @@ export class TablePanel extends Component<Props> {
|
||||
|
||||
return (
|
||||
<div className={tableStyles.wrapper}>
|
||||
{this.renderTable(data.series[currentIndex], width, height - inputHeight - padding)}
|
||||
{this.renderTable(data.series[currentIndex], width, height - inputHeight + padding)}
|
||||
<div className={tableStyles.selectWrapper}>
|
||||
<Select
|
||||
menuShouldPortal
|
||||
@@ -139,7 +139,7 @@ export class TablePanel extends Component<Props> {
|
||||
);
|
||||
}
|
||||
|
||||
return this.renderTable(data.series[0], width, height - 12);
|
||||
return this.renderTable(data.series[0], width, height);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user