From 2d1a89c4c241b65f8f396b6bcebeb8fc923f78dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Bosi?= <71827178+bosiraphael@users.noreply.github.com> Date: Fri, 31 Oct 2025 16:59:04 +0100 Subject: [PATCH] Update minimum chart sizes (#15500) Update minimum chart sizes --- .../src/modules/page-layout/constants/WidgetSizes.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/twenty-front/src/modules/page-layout/constants/WidgetSizes.ts b/packages/twenty-front/src/modules/page-layout/constants/WidgetSizes.ts index a357282e423..82c2281fdb4 100644 --- a/packages/twenty-front/src/modules/page-layout/constants/WidgetSizes.ts +++ b/packages/twenty-front/src/modules/page-layout/constants/WidgetSizes.ts @@ -7,7 +7,7 @@ type WidgetSizeConfig = { export const WIDGET_SIZES: Record = { [GraphType.AGGREGATE]: { - default: { w: 3, h: 2 }, + default: { w: 2, h: 2 }, minimum: { w: 2, h: 2 }, }, [GraphType.GAUGE]: { @@ -20,14 +20,14 @@ export const WIDGET_SIZES: Record = { }, [GraphType.VERTICAL_BAR]: { default: { w: 6, h: 6 }, - minimum: { w: 5, h: 5 }, + minimum: { w: 4, h: 4 }, }, [GraphType.HORIZONTAL_BAR]: { default: { w: 6, h: 6 }, - minimum: { w: 5, h: 5 }, + minimum: { w: 4, h: 4 }, }, [GraphType.LINE]: { default: { w: 6, h: 10 }, - minimum: { w: 5, h: 5 }, + minimum: { w: 4, h: 4 }, }, };