diff --git a/public/app/features/explore/Explore.tsx b/public/app/features/explore/Explore.tsx index 590a5f645e2..d5f8bed7498 100644 --- a/public/app/features/explore/Explore.tsx +++ b/public/app/features/explore/Explore.tsx @@ -348,11 +348,13 @@ export class Explore extends React.PureComponent { {showPanels && ( <> - {showMetrics && graphResult && this.renderGraphPanel(width)} - {showTable && this.renderTablePanel(width)} - {showLogs && this.renderLogsPanel(width)} - {showNodeGraph && this.renderNodeGraphPanel()} - {showTrace && this.renderTraceViewPanel()} + {showMetrics && graphResult && ( + {this.renderGraphPanel(width)} + )} + {showTable && {this.renderTablePanel(width)}} + {showLogs && {this.renderLogsPanel(width)}} + {showNodeGraph && {this.renderNodeGraphPanel()}} + {showTrace && {this.renderTraceViewPanel()}} )} {showRichHistory && (