From bd5b27ad517abb1e820c1cb9899c071985555bc5 Mon Sep 17 00:00:00 2001 From: "Immanuel Daviel A. Garcia" <34188635+AlexDev404@users.noreply.github.com> Date: Mon, 9 Feb 2026 12:48:28 -0600 Subject: [PATCH 1/3] fix: Update text breaking so that it breaks words properly --- apps/dokploy/components/dashboard/projects/show.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dokploy/components/dashboard/projects/show.tsx b/apps/dokploy/components/dashboard/projects/show.tsx index 8234593e1..b637436fb 100644 --- a/apps/dokploy/components/dashboard/projects/show.tsx +++ b/apps/dokploy/components/dashboard/projects/show.tsx @@ -439,7 +439,7 @@ export const ShowProjects = () => { - + {project.description} From bee4e4639cb63bed5dff014b687c7758c8db5cee Mon Sep 17 00:00:00 2001 From: "Immanuel Daviel A. Garcia" <34188635+AlexDev404@users.noreply.github.com> Date: Mon, 9 Feb 2026 13:10:50 -0600 Subject: [PATCH 2/3] amend: Apply the proper fix --- apps/dokploy/components/dashboard/projects/show.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/dokploy/components/dashboard/projects/show.tsx b/apps/dokploy/components/dashboard/projects/show.tsx index b637436fb..07ad68144 100644 --- a/apps/dokploy/components/dashboard/projects/show.tsx +++ b/apps/dokploy/components/dashboard/projects/show.tsx @@ -430,7 +430,7 @@ export const ShowProjects = () => { ) : null} - +
@@ -439,7 +439,7 @@ export const ShowProjects = () => {
- + {project.description} From 0e26c5023b8353015564295cd4d6788ddac54f84 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Tue, 10 Feb 2026 06:13:46 +0000 Subject: [PATCH 3/3] [autofix.ci] apply automated fixes --- apps/dokploy/server/utils/enterprise.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/dokploy/server/utils/enterprise.ts b/apps/dokploy/server/utils/enterprise.ts index d6beeedf8..bd151f4d1 100644 --- a/apps/dokploy/server/utils/enterprise.ts +++ b/apps/dokploy/server/utils/enterprise.ts @@ -8,7 +8,9 @@ function isNetworkError(error: unknown): boolean { if (error.message === "fetch failed") return true; const cause = (error as Error & { cause?: { code?: string } }).cause; const code = cause?.code; - return code === "ECONNREFUSED" || code === "ENOTFOUND" || code === "ETIMEDOUT"; + return ( + code === "ECONNREFUSED" || code === "ENOTFOUND" || code === "ETIMEDOUT" + ); } return false; }