Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit e6f33c5

Browse files
committed
feat: rename job field labels
ref issue #84
1 parent b5145fb commit e6f33c5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/routes/JobDetails/index.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,13 @@ const JobDetails = ({ teamId, jobId }) => {
7373
<DataItem title="Start Date" icon={<IconDescription />}>
7474
{formatDate(job.startDate)}
7575
</DataItem>
76-
<DataItem title="Duration" icon={<IconDescription />}>
76+
<DataItem title="Duration (weekly)" icon={<IconDescription />}>
7777
{job.duration || "TBD"}
7878
</DataItem>
7979
<DataItem title="Resource Type" icon={<IconDescription />}>
8080
{job.resourceType}
8181
</DataItem>
82-
<DataItem title="Rate Type" icon={<IconDescription />}>
82+
<DataItem title="Resource Rate Frequency" icon={<IconDescription />}>
8383
{job.rateType}
8484
</DataItem>
8585
<DataItem title="Workload" icon={<IconDescription />}>

src/routes/JobForm/utils.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export const getEditJobConfig = (skillOptions, onSubmit) => {
7979
placeholder: "Start Date",
8080
},
8181
{
82-
label: "Duration",
82+
label: "Duration (weekly)",
8383
type: FORM_FIELD_TYPE.NUMBER,
8484
name: "duration",
8585
minValue: 1,
@@ -93,7 +93,7 @@ export const getEditJobConfig = (skillOptions, onSubmit) => {
9393
placeholder: "Resource Type",
9494
},
9595
{
96-
label: "Rate Type",
96+
label: "Resource Rate Frequency",
9797
type: FORM_FIELD_TYPE.SELECT,
9898
name: "rateType",
9999
selectOptions: RATE_TYPE_OPTIONS,

0 commit comments

Comments
 (0)