removed conole error
This commit is contained in:
parent
e276836653
commit
ed87e3f11b
@ -95,7 +95,7 @@ const ServiceProjectProfile = () => {
|
|||||||
|
|
||||||
<li className="d-flex justify-content-center mt-4"> {/* Added mt-4 for some top margin */}
|
<li className="d-flex justify-content-center mt-4"> {/* Added mt-4 for some top margin */}
|
||||||
|
|
||||||
<li className="d-flex justify-content-center mt-4"> {/* Added mt-4 for some top margin */}
|
<a className="d-flex justify-content-center mt-4"> {/* Added mt-4 for some top margin */}
|
||||||
|
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
@ -107,7 +107,7 @@ const ServiceProjectProfile = () => {
|
|||||||
Modify Details
|
Modify Details
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
</li>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
|||||||
@ -52,7 +52,7 @@ const ServiceProjectDisplay = ({ listView ,selectedStatuses }) => {
|
|||||||
<p>List</p>
|
<p>List</p>
|
||||||
) : (
|
) : (
|
||||||
filteredProjects?.map((project) => (
|
filteredProjects?.map((project) => (
|
||||||
<ServiceProjectCard project={project} isCore={false} />
|
<ServiceProjectCard key={project.id} project={project} isCore={false} />
|
||||||
))
|
))
|
||||||
|
|
||||||
)}
|
)}
|
||||||
|
|||||||
@ -83,7 +83,7 @@ const ProjectPage = () => {
|
|||||||
|
|
||||||
<div className="card cursor-pointer mb-5">
|
<div className="card cursor-pointer mb-5">
|
||||||
<div className="card-body py-3 px-6 pb-1">
|
<div className="card-body py-3 px-6 pb-1">
|
||||||
<div className="d-flex flex-wrap justify-content-between align-items-start">
|
<div className="d-flex flex-wrap justify-content-between align-items-center">
|
||||||
{/* LEFT SIDE — DATE TOGGLE BUTTONS */}
|
{/* LEFT SIDE — DATE TOGGLE BUTTONS */}
|
||||||
<div className="mb-2">
|
<div className="mb-2">
|
||||||
<div className="d-inline-flex border rounded-pill overflow-hidden shadow-none">
|
<div className="d-inline-flex border rounded-pill overflow-hidden shadow-none">
|
||||||
@ -179,7 +179,7 @@ const ProjectPage = () => {
|
|||||||
{HasManageProject && (
|
{HasManageProject && (
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
className="btn btn-primary btn-sm d-flex align-items-center"
|
className="btn btn-primary btn-sm d-flex align-items-center my-2"
|
||||||
onClick={() =>
|
onClick={() =>
|
||||||
coreProjects
|
coreProjects
|
||||||
? setMangeProject({ isOpen: true, Project: null }) // Organization Project → Infra
|
? setMangeProject({ isOpen: true, Project: null }) // Organization Project → Infra
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user