Skip to content
Snippets Groups Projects
Unverified Commit b55337e6 authored by Paul Rosenzweig's avatar Paul Rosenzweig Committed by GitHub
Browse files

fix safari bug in chart settings (#10686)

parent a9481be9
No related branches found
No related tags found
No related merge requests found
......@@ -236,38 +236,36 @@ class ChartSettings extends Component {
{widgetList}
</div>
) : (
<div className="full-height relative">
<div className="Grid spread">
<div className="Grid-cell Cell--1of3 scroll-y scroll-show border-right py4">
{widgetList}
<div className="Grid">
<div className="Grid-cell Cell--1of3 scroll-y scroll-show border-right py4">
{widgetList}
</div>
<div className="Grid-cell flex flex-column pt2">
<div className="mx4 flex flex-column">
<Warnings
className="mx2 align-self-end text-gold"
warnings={this.state.warnings}
size={20}
/>
</div>
<div className="Grid-cell flex flex-column pt2">
<div className="mx4 flex flex-column">
<Warnings
className="mx2 align-self-end text-gold"
warnings={this.state.warnings}
size={20}
/>
</div>
<div className="mx4 flex-full relative">
<Visualization
className="spread"
rawSeries={rawSeries}
showTitle
isEditing
isDashboard
isSettings
showWarnings
onUpdateVisualizationSettings={this.handleChangeSettings}
onUpdateWarnings={warnings => this.setState({ warnings })}
/>
</div>
<ChartSettingsFooter
onDone={this.handleDone}
onCancel={this.handleCancel}
onReset={onReset}
<div className="mx4 flex-full relative">
<Visualization
className="spread"
rawSeries={rawSeries}
showTitle
isEditing
isDashboard
isSettings
showWarnings
onUpdateVisualizationSettings={this.handleChangeSettings}
onUpdateWarnings={warnings => this.setState({ warnings })}
/>
</div>
<ChartSettingsFooter
onDone={this.handleDone}
onCancel={this.handleCancel}
onReset={onReset}
/>
</div>
</div>
)}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment