From a296407c8588f2897f46ff4cb5578ce2468d0339 Mon Sep 17 00:00:00 2001 From: Yash Kumar Date: Tue, 7 Jul 2026 10:08:09 +0530 Subject: [PATCH 1/3] fix(ui): enable vertical scroll on collapsed sidebar --- apps/dokploy/components/ui/sidebar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dokploy/components/ui/sidebar.tsx b/apps/dokploy/components/ui/sidebar.tsx index f6bce8317..6c9ca131a 100644 --- a/apps/dokploy/components/ui/sidebar.tsx +++ b/apps/dokploy/components/ui/sidebar.tsx @@ -368,7 +368,7 @@ function SidebarContent({ className, ...props }: React.ComponentProps<"div">) { data-slot="sidebar-content" data-sidebar="content" className={cn( - "no-scrollbar flex min-h-0 flex-1 flex-col gap-2 overflow-auto group-data-[collapsible=icon]:overflow-hidden", + "no-scrollbar flex min-h-0 flex-1 flex-col gap-2 overflow-y-auto overflow-x-hidden", className, )} {...props} From 4e3a6db83aa72f2e2532d82da8eb82cda566c442 Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Tue, 7 Jul 2026 11:52:13 -0600 Subject: [PATCH 2/3] fix(databases): resolve crash when opening rebuild database dialog --- .../dashboard/shared/rebuild-database.tsx | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/apps/dokploy/components/dashboard/shared/rebuild-database.tsx b/apps/dokploy/components/dashboard/shared/rebuild-database.tsx index 0d958a478..55153c56d 100644 --- a/apps/dokploy/components/dashboard/shared/rebuild-database.tsx +++ b/apps/dokploy/components/dashboard/shared/rebuild-database.tsx @@ -87,29 +87,29 @@ export const RebuildDatabase = ({ id, type }: Props) => { Are you absolutely sure? - -

This action will:

-
    -
  • Stop the current database service
  • -
  • Delete all existing data and volumes
  • -
  • Reset to the default configuration
  • -
  • Restart the service with a clean state
  • -
-

- This action cannot be undone. -

+ +
+

This action will:

+
    +
  • Stop the current database service
  • +
  • Delete all existing data and volumes
  • +
  • Reset to the default configuration
  • +
  • Restart the service with a clean state
  • +
+

+ This action cannot be undone. +

+
Cancel - + Yes, rebuild database From 532c8d0c0d612834c366e448b739c23ed970f4eb Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Wed, 8 Jul 2026 01:00:45 -0600 Subject: [PATCH 3/3] Bump version from v0.29.10 to v0.29.11 --- apps/dokploy/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dokploy/package.json b/apps/dokploy/package.json index 3920d5535..1f0c53df4 100644 --- a/apps/dokploy/package.json +++ b/apps/dokploy/package.json @@ -1,6 +1,6 @@ { "name": "dokploy", - "version": "v0.29.10", + "version": "v0.29.11", "private": true, "license": "Apache-2.0", "type": "module",