From 82ce5a194d67a5c308f7cfe48e43558441a8604d Mon Sep 17 00:00:00 2001 From: kay delaney <45561153+kaydelaney@users.noreply.github.com> Date: Tue, 8 Oct 2019 12:45:38 +0100 Subject: [PATCH] Explore/UI: Removes unnecessary grafana-info-box wrapper around InfluxCheatSheet (#19701) --- .../datasource/influxdb/components/InfluxStartPage.tsx | 6 +----- .../plugins/datasource/loki/components/LokiCheatSheet.tsx | 4 ++-- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/public/app/plugins/datasource/influxdb/components/InfluxStartPage.tsx b/public/app/plugins/datasource/influxdb/components/InfluxStartPage.tsx index a825543bb75..7163beecbe8 100644 --- a/public/app/plugins/datasource/influxdb/components/InfluxStartPage.tsx +++ b/public/app/plugins/datasource/influxdb/components/InfluxStartPage.tsx @@ -4,10 +4,6 @@ import InfluxCheatSheet from './InfluxCheatSheet'; export default class InfluxStartPage extends PureComponent { render() { - return ( -
- -
- ); + return ; } } diff --git a/public/app/plugins/datasource/loki/components/LokiCheatSheet.tsx b/public/app/plugins/datasource/loki/components/LokiCheatSheet.tsx index 0fde0344a92..a88a00504ba 100644 --- a/public/app/plugins/datasource/loki/components/LokiCheatSheet.tsx +++ b/public/app/plugins/datasource/loki/components/LokiCheatSheet.tsx @@ -61,7 +61,7 @@ export default class LokiCheatSheet extends PureComponent + <>

Loki Cheat Sheet

See your logs
@@ -95,7 +95,7 @@ export default class LokiCheatSheet extends PureComponent
- + ); } }