diff --git a/src/projects/detail/components/ProjectPlanEmpty/ProjectPlanEmpty.jsx b/src/projects/detail/components/ProjectPlanEmpty/ProjectPlanEmpty.jsx index 2d075780d..27c7c30cd 100644 --- a/src/projects/detail/components/ProjectPlanEmpty/ProjectPlanEmpty.jsx +++ b/src/projects/detail/components/ProjectPlanEmpty/ProjectPlanEmpty.jsx @@ -5,12 +5,22 @@ import React from 'react' import './ProjectPlanEmpty.scss' -const ProjectPlanEmpty = () => ( -
-

Welcome to your project plan

-

Thank you for submitting your project requirements. In the next 24h someone from our team will reach out to you to discuss the project details with you so we can build the detailed project plan. Until then stand back and relax, we're working hard on your information.

-

If you feel like you have more things to send over, or want to reach out to us, please drop us a line at connect@topcoder.com. Thanks!

-
-) +const ProjectPlanEmpty = ({ isManageUser }) => { + + return isManageUser ? ( +
+

Build Your Project Plan

+

Build your project plan in Connect to reflect delivery progress to the customer. Begin by clicking the "Add Phase" button, select the template that best matches your need, and modify the phase title and milestone dates prior to publishing to the customer.

+

Important Note: To move the project into 'Active' status, you must set at least one phase in Connect's Project Plan to be in 'Planned' status, which signifies to customers that delivery planning and execution has begun.

+

If you feel like you have more things to send over, or want to reach out to us, please drop us a line at connect@topcoder.com. Thanks!

+
+ ) : ( +
+

Welcome to your project plan

+

Thank you for submitting your project requirements. In the next 24h someone from our team will reach out to you to discuss the project details with you so we can build the detailed project plan. Until then stand back and relax, we're working hard on your information.

+

If you feel like you have more things to send over, or want to reach out to us, please drop us a line at connect@topcoder.com. Thanks!

+
+ ) +} export default ProjectPlanEmpty diff --git a/src/projects/detail/containers/ProjectPlanContainer.jsx b/src/projects/detail/containers/ProjectPlanContainer.jsx index 697567eb2..9668bfd5c 100644 --- a/src/projects/detail/containers/ProjectPlanContainer.jsx +++ b/src/projects/detail/containers/ProjectPlanContainer.jsx @@ -162,7 +162,7 @@ class ProjectPlanContainer extends React.Component { }} /> ) : ( - + )} {isProjectLive && checkPermission(PERMISSIONS.EDIT_PROJECT_PLAN, project, phases) && !isLoadingPhases && (
Add New Phase