Link task manage button to manage job page

This commit was merged in pull request #86.
This commit is contained in:
victorAnumudu
2023-05-19 23:48:48 +01:00
parent 3105320685
commit a166ff87f1
7 changed files with 38 additions and 24 deletions
+1 -1
View File
@@ -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)
+1 -1
View File
@@ -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}
/>