Enable deletion of deployment upon successful deployment

This change fixes an improper import that prevented the user from
seeing the delete deployment button if the deployment was successful.

Change-Id: I92a8980b5afb773cec0e97a4c457b8ce5dbc4e15
Story: 2004431
Task: 28092
This commit is contained in:
Jason E. Rist 2018-11-27 07:09:09 -07:00
parent 97afdda125
commit 7450cf8df9
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ import PropTypes from 'prop-types';
import React, { Fragment } from 'react';
import DeploymentActions from '../deployment/DeploymentActions';
import { REDEPLOY, UNDEPLOY } from '../../constants/DeploymentConstants';
import { REDEPLOY, UNDEPLOY } from '../../constants/DeploymentActionsConstants';
import { deploymentStatusMessages } from '../../constants/DeploymentConstants';
import { getCurrentPlanDeploymentStatus } from '../../selectors/deployment';
import { getCurrentStack, getOvercloudInfo } from '../../selectors/stacks';