This commit is contained in:
Benjamin Toby 2026-03-12 16:24:16 +00:00
parent 5af4e6c2ad
commit ded38b731b

View File

@ -10,12 +10,16 @@ export default function AdminSummary() {
if (!deployment) return null;
const total_services = deployment.services.filter(
(srv) => !srv.parent_service_name,
);
return (
<Stack className="w-full gap-0">
<Stack className="grid-cell-content">
<Span>{deployment.services.length} Services</Span>
<Span>{total_services.length} Services</Span>
<Row>
{deployment.services.map((service, index) => {
{total_services.map((service, index) => {
return (
<a
key={index}