From e1b67caec857e2abef142dfffb53f3a82687b9c0 Mon Sep 17 00:00:00 2001 From: Guste Gaubaite <219.guste@gmail.com> Date: Fri, 11 Apr 2025 12:07:23 +0200 Subject: [PATCH] Update paragraph minWidth to allow smaller values --- .../front-text-components/paragraph-text-shape.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/components/mock-components/front-text-components/paragraph-text-shape.tsx b/src/common/components/mock-components/front-text-components/paragraph-text-shape.tsx index 0fcf991e..3ad5ea94 100644 --- a/src/common/components/mock-components/front-text-components/paragraph-text-shape.tsx +++ b/src/common/components/mock-components/front-text-components/paragraph-text-shape.tsx @@ -8,7 +8,7 @@ import { useShapeProps } from '../../shapes/use-shape-props.hook'; import { useGroupShapeProps } from '../mock-components.utils'; const paragraphSizeRestrictions: ShapeSizeRestrictions = { - minWidth: 200, + minWidth: 20, minHeight: 20, maxWidth: -1, maxHeight: -1,