@@ -201,7 +201,7 @@ const ApplicationDetailCard = ( | |||||
color="orange" | color="orange" | ||||
> | > | ||||
<ReplayIcon /> | <ReplayIcon /> | ||||
<Typography ml={1} variant="h5"> Re-submit</Typography> | |||||
<Typography ml={1} variant="h5"> Re-Submit</Typography> | |||||
</Button> | </Button> | ||||
<Button | <Button | ||||
// size="large" | // size="large" | ||||
@@ -213,7 +213,7 @@ const ApplicationDetailCard = ( | |||||
alignItems: 'end', | alignItems: 'end', | ||||
}}> | }}> | ||||
<CloseIcon /> | <CloseIcon /> | ||||
<Typography ml={1} variant="h5">Not accept</Typography> | |||||
<Typography ml={1} variant="h5">Not Accept</Typography> | |||||
</Button> | </Button> | ||||
</> : | </> : | ||||
(currentApplicationDetailData.status == "confirmed" && currentApplicationDetailData.creditor == 1) ? | (currentApplicationDetailData.status == "confirmed" && currentApplicationDetailData.creditor == 1) ? | ||||
@@ -316,8 +316,8 @@ | |||||
"pendingPayment": "Pending Payment", | "pendingPayment": "Pending Payment", | ||||
"pendingPublish": "To be Published", | "pendingPublish": "To be Published", | ||||
"completed": "Completed", | "completed": "Completed", | ||||
"notAccepted": "Not accepted", | |||||
"resubmit": "Re-submit Required", | |||||
"notAccepted": "Not Accepted", | |||||
"resubmit": "Re-Submit Required", | |||||
"cancelled": "Cancelled", | "cancelled": "Cancelled", | ||||
"withdrawn": "Withdrawn", | "withdrawn": "Withdrawn", | ||||
"searchApplyRecord": "Search application record", | "searchApplyRecord": "Search application record", | ||||
@@ -369,9 +369,9 @@ | |||||
"applyStatus": "App. Status", | "applyStatus": "App. Status", | ||||
"gazetteCount": "Gazette Issue No.", | "gazetteCount": "Gazette Issue No.", | ||||
"gazetteCount2" :"Gazette Issue No./ Remarks", | "gazetteCount2" :"Gazette Issue No./ Remarks", | ||||
"gazetteCount2_1" :"Care Of/ Remarks", | |||||
"gazetteCount3" :"Gazette Issue No./ Care Of/ Remarks", | |||||
"careOf":"Care Of", | |||||
"gazetteCount2_1" :"Care Of (c/o)/ Remarks", | |||||
"gazetteCount3" :"Gazette Issue No./ Care Of (c/o)/ Remarks", | |||||
"careOf":"Care Of (c/o)", | |||||
"publishDate": "Publish Date", | "publishDate": "Publish Date", | ||||
"draftFile": "Manuscript file", | "draftFile": "Manuscript file", | ||||
"download": "Download", | "download": "Download", | ||||
@@ -57,9 +57,9 @@ export function getStatusByTextEng(status, creditor) { | |||||
case "completed": | case "completed": | ||||
return getStatusTag({ color: "#8a8784", text: "Completed" }) | return getStatusTag({ color: "#8a8784", text: "Completed" }) | ||||
case "notAccepted": | case "notAccepted": | ||||
return getStatusTag({ color: "#d9372b", text: "Not accepted" }) | |||||
return getStatusTag({ color: "#d9372b", text: "Not Accepted" }) | |||||
case "resubmit": | case "resubmit": | ||||
return getStatusTag({ color: "#757373", text: "Re-submit Required" }) | |||||
return getStatusTag({ color: "#757373", text: "Re-Submit Required" }) | |||||
case "cancelled": | case "cancelled": | ||||
return getStatusTag({ color: "#8a8784", text: "Cancelled" }) | return getStatusTag({ color: "#8a8784", text: "Cancelled" }) | ||||
case "withdrawn": | case "withdrawn": | ||||