mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
Explore/UI: Removes unnecessary grafana-info-box wrapper around InfluxCheatSheet (#19701)
This commit is contained in:
parent
5cf69e6b25
commit
82ce5a194d
@ -4,10 +4,6 @@ import InfluxCheatSheet from './InfluxCheatSheet';
|
||||
|
||||
export default class InfluxStartPage extends PureComponent<ExploreStartPageProps> {
|
||||
render() {
|
||||
return (
|
||||
<div className="grafana-info-box grafana-info-box--max-lg">
|
||||
<InfluxCheatSheet onClickExample={this.props.onClickExample} />
|
||||
</div>
|
||||
);
|
||||
return <InfluxCheatSheet onClickExample={this.props.onClickExample} />;
|
||||
}
|
||||
}
|
||||
|
@ -61,7 +61,7 @@ export default class LokiCheatSheet extends PureComponent<ExploreStartPageProps,
|
||||
const { userExamples } = this.state;
|
||||
|
||||
return (
|
||||
<div>
|
||||
<>
|
||||
<h2>Loki Cheat Sheet</h2>
|
||||
<div className="cheat-sheet-item">
|
||||
<div className="cheat-sheet-item__title">See your logs</div>
|
||||
@ -95,7 +95,7 @@ export default class LokiCheatSheet extends PureComponent<ExploreStartPageProps,
|
||||
supports exact and regular expression filters.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user