REMOVED UNNEEDED CARD CLASS

This commit is contained in:
pramod.mahajan 2025-10-11 11:13:38 +05:30
parent a64635cd37
commit 31882c3d12
3 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@ const SkeletonCell = ({ width = "100%", height = 20, style = {} }) => (
export const TenantTableSkeleton = ({ columns, rows = 5 }) => {
return (
<div className="card p-2 mt-3">
<div className="p-2 mt-3">
<div className="card-datatable text-nowrap table-responsive">
<table className="table border-top dataTable text-nowrap">
<thead>

View File

@ -137,7 +137,7 @@ const TenantsList = ({
return (
<>
<div className="p-2 mt-3">
<div className="card-datatable text-nowrap table-responsive">
<div className=" text-nowrap table-responsive">
<table className="table border-top dataTable text-nowrap">
<thead>
<tr className="shadow-sm">

View File

@ -81,8 +81,8 @@ const ServiceGroups = ({ service }) => {
) : (
<div className="accordion-body text-start m-0 p-0">
<div className="dropdown-divider border"></div>
{groups?.data?.map((group) => {
{!isLoading && groups?.data?.length === 0 && (<div className="text-center py-2"><p>No Group available.</p></div>)}
{groups && groups?.data?.map((group) => {
const isOpen = activeGroupId === group.id;
return (