You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/projects/detail/components/ProjectPlanEmpty/ProjectPlanEmpty.jsx
+17-7Lines changed: 17 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -5,12 +5,22 @@ import React from 'react'
5
5
6
6
import'./ProjectPlanEmpty.scss'
7
7
8
-
constProjectPlanEmpty=()=>(
9
-
<divstyleName="container">
10
-
<h2>Welcome to your project plan</h2>
11
-
<p>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.</p>
12
-
<p>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!</p>
13
-
</div>
14
-
)
8
+
constProjectPlanEmpty=({ isManageUser })=>{
9
+
10
+
returnisManageUser ? (
11
+
<divstyleName="container">
12
+
<h2>Build Your Project Plan</h2>
13
+
<p>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.</p>
14
+
<p>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.</p>
15
+
<p>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!</p>
16
+
</div>
17
+
) : (
18
+
<divstyleName="container">
19
+
<h2>Welcome to your project plan</h2>
20
+
<p>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.</p>
21
+
<p>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!</p>
0 commit comments