This repository was archived by the owner on Mar 13, 2025. It is now read-only.
File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -73,13 +73,13 @@ const JobDetails = ({ teamId, jobId }) => {
73
73
< DataItem title = "Start Date" icon = { < IconDescription /> } >
74
74
{ formatDate ( job . startDate ) }
75
75
</ DataItem >
76
- < DataItem title = "Duration" icon = { < IconDescription /> } >
76
+ < DataItem title = "Duration (weekly) " icon = { < IconDescription /> } >
77
77
{ job . duration || "TBD" }
78
78
</ DataItem >
79
79
< DataItem title = "Resource Type" icon = { < IconDescription /> } >
80
80
{ job . resourceType }
81
81
</ DataItem >
82
- < DataItem title = "Rate Type " icon = { < IconDescription /> } >
82
+ < DataItem title = "Resource Rate Frequency " icon = { < IconDescription /> } >
83
83
{ job . rateType }
84
84
</ DataItem >
85
85
< DataItem title = "Workload" icon = { < IconDescription /> } >
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ export const getEditJobConfig = (skillOptions, onSubmit) => {
79
79
placeholder : "Start Date" ,
80
80
} ,
81
81
{
82
- label : "Duration" ,
82
+ label : "Duration (weekly) " ,
83
83
type : FORM_FIELD_TYPE . NUMBER ,
84
84
name : "duration" ,
85
85
minValue : 1 ,
@@ -93,7 +93,7 @@ export const getEditJobConfig = (skillOptions, onSubmit) => {
93
93
placeholder : "Resource Type" ,
94
94
} ,
95
95
{
96
- label : "Rate Type " ,
96
+ label : "Resource Rate Frequency " ,
97
97
type : FORM_FIELD_TYPE . SELECT ,
98
98
name : "rateType" ,
99
99
selectOptions : RATE_TYPE_OPTIONS ,
You can’t perform that action at this time.
0 commit comments