Table: Make the height of the table include header cells (#21824)

* Mak table panel with padding

* Make table have a correct height
This commit is contained in:
Dominik Prokop
2020-01-30 07:47:21 +01:00
committed by GitHub
parent 13948c0b76
commit 9882464505
2 changed files with 10 additions and 6 deletions

View File

@@ -4,7 +4,4 @@ import { TablePanelEditor } from './TablePanelEditor';
import { TablePanel } from './TablePanel';
import { Options, defaults } from './types';
export const plugin = new PanelPlugin<Options>(TablePanel)
.setNoPadding()
.setDefaults(defaults)
.setEditor(TablePanelEditor);
export const plugin = new PanelPlugin<Options>(TablePanel).setDefaults(defaults).setEditor(TablePanelEditor);