Merge pull request #436 from Dokploy/433-service-stays-running-if-project-deleted

fix: add missing compose .length #433
This commit is contained in:
Mauricio Siu
2024-09-09 09:40:56 -06:00
committed by GitHub

View File

@@ -63,8 +63,8 @@ export const ShowProjects = () => {
project?.mysql.length === 0 &&
project?.postgres.length === 0 &&
project?.redis.length === 0 &&
project?.applications.length === 0;
project?.compose.length === 0;
project?.applications.length === 0 &&
project?.compose.length === 0;
const totalServices =
project?.mariadb.length +