Skip to content
Snippets Groups Projects
Unverified Commit b5d48172 authored by Alexander Lesnenko's avatar Alexander Lesnenko Committed by GitHub
Browse files

fix stacked buttons on embedded dashboards (#17126)

parent 28aab0f6
Branches
Tags
No related merge requests found
......@@ -151,15 +151,7 @@ export default class PublicDashboard extends Component {
parameterValues={parameterValues}
setParameterValue={this.props.setParameterValue}
actionButtons={
buttons.length > 0 && (
<div>
{buttons.map((button, index) => (
<span key={index} className="m1">
{button}
</span>
))}
</div>
)
buttons.length > 0 && <div className="flex">{buttons}</div>
}
>
<LoadingAndErrorWrapper
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment