PanelEditor: Fixes issue with Table view and multi data frames (#49854)

This commit is contained in:
Joao Silva
2022-05-30 20:29:51 -07:00
committed by GitHub
parent 143f9e2dd9
commit 056a1fec3d
@@ -145,7 +145,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 options={names} value={names[currentIndex]} onChange={this.onChangeTableSelection} />
</div>