mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 20:24:18 -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>
|
||||
)}
|
||||
</div>
|
||||
<a className="explore-toolbar-header-close" onClick={() => this.props.closeSplit(exploreId)}>
|
||||
<i className="fa fa-times fa-fw" />
|
||||
</a>
|
||||
{splitted && (
|
||||
<a className="explore-toolbar-header-close" onClick={() => this.props.closeSplit(exploreId)}>
|
||||
<i className="fa fa-times fa-fw" />
|
||||
</a>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
<div className="explore-toolbar-item">
|
||||
|
Loading…
Reference in New Issue
Block a user