From 5fc10e61e4a710988f68707c3ac46485ddba42a8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 21 Feb 2026 08:01:09 +0000 Subject: [PATCH 1/3] Initial plan From 19634b01602b04dfee6f992fa06825f8c6ee6490 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 21 Feb 2026 08:12:54 +0000 Subject: [PATCH 2/3] fix: add min-w-0 and overflow-hidden to layout containers to prevent content overflow - SidebarInset: add min-w-0 overflow-hidden to prevent flex children from pushing beyond parent width - AppShell main: add min-w-0 to prevent flex child overflow - Console ObjectView: add min-w-0 overflow-hidden to outer and inner content divs - PluginObjectView: add min-w-0 overflow-hidden to root and content wrapper - GanttView: make taskListWidth responsive (120px mobile, 200px tablet, 300px desktop) - KanbanImpl: add min-w-0 to swimlane and flat board containers - CalendarView: add min-w-0 overflow-hidden to root, responsive header padding/wrapping - ObjectMap: add min-w-0 overflow-hidden using cn() to all container states - ObjectTimeline: add min-w-0 to root container - ListView: add min-w-0 overflow-hidden to root container Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com> --- apps/console/src/components/ObjectView.tsx | 4 ++-- packages/components/src/ui/sidebar.tsx | 2 +- packages/layout/src/AppShell.tsx | 2 +- packages/plugin-calendar/src/CalendarView.tsx | 6 +++--- packages/plugin-gantt/src/GanttView.tsx | 5 +++-- packages/plugin-kanban/src/KanbanImpl.tsx | 4 ++-- packages/plugin-list/src/ListView.tsx | 2 +- packages/plugin-map/src/ObjectMap.tsx | 8 ++++---- packages/plugin-timeline/src/ObjectTimeline.tsx | 2 +- packages/plugin-view/src/ObjectView.tsx | 4 ++-- 10 files changed, 20 insertions(+), 19 deletions(-) diff --git a/apps/console/src/components/ObjectView.tsx b/apps/console/src/components/ObjectView.tsx index b4063e0d0b..e5e96fe2b6 100644 --- a/apps/console/src/components/ObjectView.tsx +++ b/apps/console/src/components/ObjectView.tsx @@ -388,7 +388,7 @@ export function ObjectView({ dataSource, objects, onEdit, onRowClick }: any) { }), [objectDef.name, onEdit, activeView?.showSearch, activeView?.showFilters]); return ( -
+
{/* 1. Header with breadcrumb + description */}
@@ -517,7 +517,7 @@ export function ObjectView({ dataSource, objects, onEdit, onRowClick }: any) { {/* 2. Content — Plugin ObjectView with ViewSwitcher + Filter + Sort */}
-
+
{navbar} -
+
{children}
diff --git a/packages/plugin-calendar/src/CalendarView.tsx b/packages/plugin-calendar/src/CalendarView.tsx index 3309c34acb..6b8b1edd21 100644 --- a/packages/plugin-calendar/src/CalendarView.tsx +++ b/packages/plugin-calendar/src/CalendarView.tsx @@ -237,9 +237,9 @@ function CalendarView({ } return ( -
+
{/* Header */} -
+