Skip to content

Commit

Permalink
Merge pull request #590 from Lemoncode/feature/#584-line-min-width
Browse files Browse the repository at this point in the history
adjusted min line width height
  • Loading branch information
brauliodiez authored Nov 28, 2024
2 parents 581a95a + ebcf3ba commit e0caf56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { BASIC_SHAPE } from '../front-components/shape.const';
import { useGroupShapeProps } from '../mock-components.utils';

const horizontalLineShapeRestrictions: ShapeSizeRestrictions = {
minWidth: 50,
minWidth: 30,
minHeight: 10,
maxWidth: -1,
maxHeight: 10,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { useGroupShapeProps } from '../mock-components.utils';

const verticalLineShapeRestrictions: ShapeSizeRestrictions = {
minWidth: 10,
minHeight: 50,
minHeight: 30,
maxWidth: 10,
maxHeight: -1,
defaultWidth: 10,
Expand Down

0 comments on commit e0caf56

Please sign in to comment.