From ff369c9d3ad057c65460650171366d791f1c815c Mon Sep 17 00:00:00 2001 From: Diego Fabricio Date: Wed, 18 Mar 2026 21:09:08 -0500 Subject: [PATCH 1/3] style(dashboard): remove max-width constraint from deployments card - Deleted max-w-8xl class to allow card width to adapt freely --- apps/dokploy/pages/dashboard/deployments.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dokploy/pages/dashboard/deployments.tsx b/apps/dokploy/pages/dashboard/deployments.tsx index c39e4b156..d20b8a024 100644 --- a/apps/dokploy/pages/dashboard/deployments.tsx +++ b/apps/dokploy/pages/dashboard/deployments.tsx @@ -40,7 +40,7 @@ function DeploymentsPage() { return (
- +
From 4ef8c94340801e5ff02532537dc370d0749dc1e2 Mon Sep 17 00:00:00 2001 From: Diego Fabricio Date: Wed, 18 Mar 2026 21:21:47 -0500 Subject: [PATCH 2/3] Apply suggestion from @greptile-apps[bot] Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> --- apps/dokploy/pages/dashboard/deployments.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dokploy/pages/dashboard/deployments.tsx b/apps/dokploy/pages/dashboard/deployments.tsx index d20b8a024..8b62cef6b 100644 --- a/apps/dokploy/pages/dashboard/deployments.tsx +++ b/apps/dokploy/pages/dashboard/deployments.tsx @@ -40,7 +40,7 @@ function DeploymentsPage() { return (
- +
From 0941ec9f3ebade3019504befaed9a4897d3a2f33 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Sun, 12 Apr 2026 20:00:08 +0000 Subject: [PATCH 3/3] [autofix.ci] apply automated fixes --- apps/schedules/src/index.ts | 5 ++++- apps/schedules/src/utils.ts | 10 ++++++++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/apps/schedules/src/index.ts b/apps/schedules/src/index.ts index 0f811de6f..a5f0fd47c 100644 --- a/apps/schedules/src/index.ts +++ b/apps/schedules/src/index.ts @@ -104,7 +104,10 @@ process.on("uncaughtException", (err) => { }); process.on("unhandledRejection", (reason, _promise) => { - logger.error(reason instanceof Error ? reason : { reason: String(reason) }, "Unhandled Rejection at: Promise"); + logger.error( + reason instanceof Error ? reason : { reason: String(reason) }, + "Unhandled Rejection at: Promise", + ); }); const port = Number.parseInt(process.env.PORT || "3000"); diff --git a/apps/schedules/src/utils.ts b/apps/schedules/src/utils.ts index dc22c2d4b..7caa106af 100644 --- a/apps/schedules/src/utils.ts +++ b/apps/schedules/src/utils.ts @@ -142,7 +142,10 @@ export const initializeJobs = async () => { cronSchedule: CLEANUP_CRON_JOB, }); } catch (error) { - logger.error(error, `Failed to schedule cleanup job for server ${serverId}`); + logger.error( + error, + `Failed to schedule cleanup job for server ${serverId}`, + ); } } @@ -255,7 +258,10 @@ export const initializeJobs = async () => { cronSchedule: volumeBackup.cronExpression, }); } catch (error) { - logger.error(error, `Failed to schedule volume backup ${volumeBackup.volumeBackupId}`); + logger.error( + error, + `Failed to schedule volume backup ${volumeBackup.volumeBackupId}`, + ); } }