diff --git a/packages/grafana-ui/src/components/Table/Table.tsx b/packages/grafana-ui/src/components/Table/Table.tsx index 2f59657fbd4..11559e32c57 100644 --- a/packages/grafana-ui/src/components/Table/Table.tsx +++ b/packages/grafana-ui/src/components/Table/Table.tsx @@ -318,7 +318,14 @@ export const Table = memo((props: Props) => { }; return ( -
+
{!noHeader && ( diff --git a/public/app/features/inspector/InspectDataTab.tsx b/public/app/features/inspector/InspectDataTab.tsx index 88e93c13984..666eff6d56f 100644 --- a/public/app/features/inspector/InspectDataTab.tsx +++ b/public/app/features/inspector/InspectDataTab.tsx @@ -285,11 +285,7 @@ export class InspectDataTab extends PureComponent { return null; } - return ( -
- - - ); + return
; }} diff --git a/public/app/features/inspector/styles.ts b/public/app/features/inspector/styles.ts index 9e72803d2fa..888793288ba 100644 --- a/public/app/features/inspector/styles.ts +++ b/public/app/features/inspector/styles.ts @@ -17,6 +17,7 @@ export const getPanelInspectorStyles2 = (theme: GrafanaTheme2) => { height: 100%; width: 100%; flex: 1 1 0; + min-height: 0; `, toolbar: css` display: flex; @@ -32,7 +33,6 @@ export const getPanelInspectorStyles2 = (theme: GrafanaTheme2) => { content: css` flex-grow: 1; height: 100%; - overflow: scroll; `, editor: css` font-family: monospace;