Commit e40a4b7
authored
fix(ui): shows minRowsProp instead of minRows (#14681)
Initially:
<img width="958" height="135" alt="image"
src="https://github.com/user-attachments/assets/098cbe10-5f4b-4d66-bc59-8d6ba5567382"
/>
Now says the _total_ number of rows required in the validation message
which matches the config `minRows` property:
<img width="964" height="128" alt="image"
src="https://github.com/user-attachments/assets/ec334cf1-265d-4134-b67c-fb84008fcac8"
/>
# Array Field
```ts
{
name: 'arrayWithMinRows',
fields: [
{
name: 'text',
type: 'text',
},
],
minRows: 2, // <---
type: 'array',
required: true,
},
```1 parent c455f58 commit e40a4b7
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
67 | 67 | | |
68 | 68 | | |
69 | 69 | | |
70 | | - | |
| 70 | + | |
71 | 71 | | |
72 | 72 | | |
73 | 73 | | |
| |||
0 commit comments