Add sensible max number of rows and columns in a grid
This commit is contained in:
parent
4fffa82573
commit
8df97b3537
|
@ -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
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue