[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2025-09-26 08:48:23 +00:00
committed by GitHub
parent ee3ff18feb
commit cbdc4e4a20

View File

@@ -97,24 +97,28 @@ export const ShowProjects = () => {
break;
case "services": {
const aTotalServices = a.environments.reduce((total, env) => {
return total +
return (
total +
(env.applications?.length || 0) +
(env.mariadb?.length || 0) +
(env.mongo?.length || 0) +
(env.mysql?.length || 0) +
(env.postgres?.length || 0) +
(env.redis?.length || 0) +
(env.compose?.length || 0);
(env.compose?.length || 0)
);
}, 0);
const bTotalServices = b.environments.reduce((total, env) => {
return total +
return (
total +
(env.applications?.length || 0) +
(env.mariadb?.length || 0) +
(env.mongo?.length || 0) +
(env.mysql?.length || 0) +
(env.postgres?.length || 0) +
(env.redis?.length || 0) +
(env.compose?.length || 0);
(env.compose?.length || 0)
);
}, 0);
comparison = aTotalServices - bTotalServices;
break;