Correction in List view alignment.

This commit is contained in:
Kartik Sharma 2025-11-24 12:53:34 +05:30
parent ad2cfaabb6
commit 9890a77533
3 changed files with 4 additions and 4 deletions

View File

@ -126,7 +126,7 @@ const ProjectListView = ({ data, currentPage, totalPages, paginate }) => {
return ( return (
<div className="card page-min-h py-4 px-6 shadow-sm"> <div className="card page-min-h py-4 px-6 shadow-sm">
<div className="table-responsive text-nowrap page-min-h"> <div className="table-responsive text-nowrap">
<table className="table table-hover align-middle m-0"> <table className="table table-hover align-middle m-0">
<thead className="border-bottom "> <thead className="border-bottom ">
<tr> <tr>

View File

@ -48,7 +48,7 @@ const ServiceProjectDisplay = ({ listView, selectedStatuses }) => {
</div> </div>
); );
return ( return (
<div className="row"> <div className="">
{listView ? ( {listView ? (
<ServiceProjectList <ServiceProjectList
data={filteredProjects} data={filteredProjects}

View File

@ -98,7 +98,7 @@ const ProjectsDisplay = ({
); );
return ( return (
<div className="row"> <div className="">
{listView ? ( {listView ? (
<ProjectListView <ProjectListView
data={projectList} data={projectList}