Skip to content

Commit 009d6fa

Browse files
committed
fix width issue for Workspace detai page
1 parent 6fcafe4 commit 009d6fa

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

client/packages/lowcoder/src/pages/setting/environments/WorkspaceDetail.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,12 @@ const WorkspaceDetail: React.FC = () => {
9999
];
100100

101101
return (
102-
<div className="workspace-detail-container" style={{ padding: "24px", flex: 1 }}>
102+
<div className="workspace-detail-container" style={{
103+
padding: "24px",
104+
flex: 1,
105+
minWidth: "1000px",
106+
overflowX: "auto"
107+
}}>
103108
{/* Modern Breadcrumbs navigation */}
104109
<ModernBreadcrumbs items={breadcrumbItems} />
105110

0 commit comments

Comments
 (0)