mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
fix(explore): only show split close button when split is active (#16203)
This commit is contained in:
parent
8ef1c75aa1
commit
9655eeda18
@ -108,9 +108,11 @@ export class UnConnectedExploreToolbar extends PureComponent<Props, {}> {
|
|||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
<a className="explore-toolbar-header-close" onClick={() => this.props.closeSplit(exploreId)}>
|
{splitted && (
|
||||||
<i className="fa fa-times fa-fw" />
|
<a className="explore-toolbar-header-close" onClick={() => this.props.closeSplit(exploreId)}>
|
||||||
</a>
|
<i className="fa fa-times fa-fw" />
|
||||||
|
</a>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="explore-toolbar-item">
|
<div className="explore-toolbar-item">
|
||||||
|
Loading…
Reference in New Issue
Block a user