Add space above Edit Configuration button

This change makes the Deployment step action buttons spacing consistent
by wrapping deployment configuration sumary in paragraph

Closes-Bug: #1757108
Change-Id: I004b8d8d8575b17757471bc879d1660f9749df38
This commit is contained in:
Jiri Tomasek 2018-03-20 11:54:50 +01:00
parent 16514bf462
commit 694cf41751
2 changed files with 10 additions and 9 deletions

View File

@ -31,7 +31,6 @@ const messages = defineMessages({
const ConfigurePlanStep = props => (
<div>
<DeploymentConfigurationSummary {...props} />
<br />
<Link
className="btn btn-default"
id="ConfigurePlanStep__EditDeploymentLink"

View File

@ -46,14 +46,16 @@ class DeploymentConfigurationSummary extends React.Component {
render() {
return (
<InlineLoader
loaded={this.props.loaded}
content={this.props.intl.formatMessage(
messages.loadingCurrentConfiguration
)}
>
{this.props.summary}
</InlineLoader>
<p>
<InlineLoader
loaded={this.props.loaded}
content={this.props.intl.formatMessage(
messages.loadingCurrentConfiguration
)}
>
{this.props.summary}
</InlineLoader>
</p>
);
}
}