diff --git a/src/js/components/deployment_plan/ConfigurePlanStep.js b/src/js/components/deployment_plan/ConfigurePlanStep.js index 51d84f51..92f55b49 100644 --- a/src/js/components/deployment_plan/ConfigurePlanStep.js +++ b/src/js/components/deployment_plan/ConfigurePlanStep.js @@ -33,7 +33,10 @@ const ConfigurePlanStep = props => {
  - +
diff --git a/src/js/components/deployment_plan/DeploymentConfiguration.js b/src/js/components/deployment_plan/DeploymentConfiguration.js index 57dc4675..86f8c09c 100644 --- a/src/js/components/deployment_plan/DeploymentConfiguration.js +++ b/src/js/components/deployment_plan/DeploymentConfiguration.js @@ -45,7 +45,7 @@ class DeploymentConfiguration extends React.Component { render() { const { location, match } = this.props; return ( - +
    - + - +
diff --git a/src/js/components/environment_configuration/EnvironmentConfiguration.js b/src/js/components/environment_configuration/EnvironmentConfiguration.js index 81320ca0..688cba74 100644 --- a/src/js/components/environment_configuration/EnvironmentConfiguration.js +++ b/src/js/components/environment_configuration/EnvironmentConfiguration.js @@ -186,7 +186,10 @@ class EnvironmentConfiguration extends React.Component {
-
    +
      {topicTabs}
diff --git a/src/js/components/ui/NavTab.js b/src/js/components/ui/NavTab.js index 4020ffd3..fa819dbd 100644 --- a/src/js/components/ui/NavTab.js +++ b/src/js/components/ui/NavTab.js @@ -18,14 +18,14 @@ import PropTypes from 'prop-types'; import React from 'react'; import { Link, Route } from 'react-router-dom'; -const NavTab = ({ activeClassName, children, to, exact, location }) => { +const NavTab = ({ activeClassName, children, to, exact, location, id }) => { return ( ( -
  • +
  • {children}
  • )} @@ -36,6 +36,7 @@ NavTab.propTypes = { activeClassName: PropTypes.string.isRequired, children: PropTypes.node, exact: PropTypes.bool.isRequired, + id: PropTypes.string, location: PropTypes.object, to: PropTypes.oneOfType([PropTypes.string, PropTypes.object]).isRequired };