Added new project status

This commit is contained in:
ashutosh.nehete 2025-06-19 11:42:35 +05:30
parent f7d0a35b3a
commit 77f5632506
2 changed files with 5 additions and 5 deletions

View File

@ -263,7 +263,7 @@ const ManageProjectInfo = ({ project, handleSubmitForm, onClose }) => {
<option value="b74da4c2-d07e-46f2-9919-e75e49b12731">Active</option>
<option value="603e994b-a27f-4e5d-a251-f3d69b0498ba">On Hold</option>
{/* <option value="3">Suspended</option> */}
<option value="cdad86aa-8a56-4ff4-b633-9c629057dfef">In Progress</option>
<option value="ef1c356e-0fe0-42df-a5d3-8daee355492d">Inactive</option>
<option value="33deaef9-9af1-4f2a-b443-681ea0d04f81">Completed</option>

View File

@ -4,8 +4,8 @@ export const getProjectStatusName = (statusId) => {
return "Active";
case "603e994b-a27f-4e5d-a251-f3d69b0498ba":
return "On Hold";
// case 3:
// return "Suspended";
case "cdad86aa-8a56-4ff4-b633-9c629057dfef":
return "In Progress";
case "ef1c356e-0fe0-42df-a5d3-8daee355492d":
return "Inactive";
case "33deaef9-9af1-4f2a-b443-681ea0d04f81":
@ -23,8 +23,8 @@ export const getProjectStatusColor = (statusId) => {
return "bg-label-info";
case "33deaef9-9af1-4f2a-b443-681ea0d04f81":
return "bg-label-secondary";
case 5:
return "bg-label-dark";
case "cdad86aa-8a56-4ff4-b633-9c629057dfef":
return "bg-label-success";
}
};