Link task manage button to manage job page
This commit was merged in pull request #86.
This commit is contained in:
@@ -100,7 +100,7 @@ function DeleteJobPopout({details, onClose, situation}) {
|
||||
{details.title}
|
||||
</p>
|
||||
<p className="text-lg tracking-wide text-dark-gray dark:text-white">
|
||||
Price: {details.price}
|
||||
Price: {details.price * 0.01}
|
||||
</p>
|
||||
<p className="text-lg tracking-wide text-dark-gray dark:text-white">
|
||||
Duration: {details.timeline_days} day(s)
|
||||
|
||||
@@ -163,7 +163,7 @@ const EditJobPopOut = ({ details, onClose, situation, country }) => {
|
||||
type="number"
|
||||
name="price"
|
||||
// placeholder="Please Enter Amount"
|
||||
value={props.values.price}
|
||||
value={props.values.price * 0.01}
|
||||
inputHandler={props.handleChange}
|
||||
blurHandler={props.handleBlur}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user