added project status - 'In-Progress'

This commit is contained in:
Pramod Mahajan 2025-07-04 10:50:57 +05:30
parent 9961b4aba7
commit 4c6e0b5c9e

View File

@ -42,7 +42,8 @@ const ProjectList = () => {
"b74da4c2-d07e-46f2-9919-e75e49b12731",
"603e994b-a27f-4e5d-a251-f3d69b0498ba",
"ef1c356e-0fe0-42df-a5d3-8daee355492d",
"33deaef9-9af1-4f2a-b443-681ea0d04f81",
"cdad86aa-8a56-4ff4-b633-9c629057dfef",
"33deaef9-9af1-4f2a-b443-681ea0d04f81",
]);
const handleShow = () => setShowModal(true);
@ -207,6 +208,10 @@ const ProjectList = () => {
id: "b74da4c2-d07e-46f2-9919-e75e49b12731",
label: "Active",
},
{
id: "cdad86aa-8a56-4ff4-b633-9c629057dfef",
label:"In Progress"
},
{
id: "603e994b-a27f-4e5d-a251-f3d69b0498ba",
label: "On Hold",
@ -263,7 +268,7 @@ const ProjectList = () => {
{listView ? (
<div className="card cursor-pointer">
<div className="card-body p-2">
<div className="table-responsive text-nowrap py-2 ">
<div className="table-responsive text-nowrap py-2 " style={{minHeight:"400px"}}>
<table className="table m-3">
<thead>
<tr>
@ -332,7 +337,7 @@ const ProjectList = () => {
<tbody className="table-border-bottom-0 overflow-auto ">
{currentItems.length === 0 ? (
<tr>
<td colSpan="12" className="text-center py-4">
<td colSpan="12" className="text-center py-4" >
No projects found
</td>
</tr>