1
0
Fork 0
mirror of synced 2024-07-01 12:30:41 +12:00

Add sensible max number of rows and columns in a grid

This commit is contained in:
Andrew Kingston 2022-10-24 12:15:50 +01:00
parent 4fffa82573
commit 8df97b3537

View file

@ -4592,14 +4592,16 @@
"label": "Rows", "label": "Rows",
"key": "rows", "key": "rows",
"defaultValue": 12, "defaultValue": 12,
"min": 1 "min": 1,
"max": 32
}, },
{ {
"type": "number", "type": "number",
"label": "Columns", "label": "Columns",
"key": "cols", "key": "cols",
"defaultValue": 12, "defaultValue": 12,
"min": 1 "min": 1,
"max": 32
} }
] ]
}, },