Changes.
This commit is contained in:
parent
c669eb90c3
commit
071e5956a7
@ -48,21 +48,19 @@ const ServiceProjectDisplay = ({ listView, selectedStatuses }) => {
|
|||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
return (
|
return (
|
||||||
<div className="">
|
<div className="row">
|
||||||
{listView ? (
|
{listView ? (
|
||||||
<ServiceProjectList
|
<ServiceProjectList data={filteredProjects}
|
||||||
data={filteredProjects}
|
|
||||||
currentPage={currentPage}
|
currentPage={currentPage}
|
||||||
totalPages={data?.totalPages}
|
totalPages={data?.totalPages}
|
||||||
paginate={paginate}
|
paginate={paginate}
|
||||||
isCore={false}
|
isCore={false} />
|
||||||
/>
|
|
||||||
) : (
|
) : (
|
||||||
filteredProjects?.map((project) => (
|
filteredProjects?.map((project) => (
|
||||||
<ServiceProjectCard key={project.id} project={project} isCore={false} />
|
<ServiceProjectCard key={project.id} project={project} isCore={false} />
|
||||||
))
|
))
|
||||||
)}
|
|
||||||
|
|
||||||
|
)}
|
||||||
|
|
||||||
<div className="col-12 d-flex justify-content-start mt-3">
|
<div className="col-12 d-flex justify-content-start mt-3">
|
||||||
<Pagination
|
<Pagination
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user