mirror of
https://github.com/grafana/grafana.git
synced 2026-09-05 04:40:13 -05:00
NewPanelEdit: Fixed missing react keys in list error
This commit is contained in:
@@ -20,6 +20,6 @@ export class TablePanel extends Component<Props> {
|
||||
return <div>No Table Data...</div>;
|
||||
}
|
||||
|
||||
return <Table height={height} width={width} data={data.series[0]} noHeader={!options.showHeader} />;
|
||||
return <Table height={height - 16} width={width} data={data.series[0]} noHeader={!options.showHeader} />;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -15,7 +15,6 @@ export const plugin = new PanelPlugin<Options, CustomFieldConfig>(TablePanel)
|
||||
min: 20,
|
||||
max: 300,
|
||||
},
|
||||
defaultValue: 1,
|
||||
})
|
||||
.addSelect({
|
||||
id: 'displayMode',
|
||||
|
||||
Reference in New Issue
Block a user