File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed
content/docs/content-creation Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ title: Fields
3
3
slug : content-creation/fields
4
4
description : null
5
5
date : 2022-03-14T08:42:21.626Z
6
- lastmod : 2023-11-12T12:58:00.539Z
6
+ lastmod : 2023-12-01T09:24:51.920Z
7
7
weight : 200.2
8
8
---
9
9
@@ -88,7 +88,8 @@ content.
88
88
89
89
### Properties
90
90
91
- The number field allows you to set the following properties:
91
+ To configure the number field, you can specify the following properties in the ` numberOptions `
92
+ field property:
92
93
93
94
- ` min (number) ` : The minimum value for the field.
94
95
- ` max (number) ` : The maximum value for the field.
@@ -118,9 +119,11 @@ weight: 1
118
119
"title" : " Weight" ,
119
120
"name" : " weight" ,
120
121
"type" : " number" ,
121
- "min" : 1 ,
122
- "max" : 10 ,
123
- "step" : 1
122
+ "numberOptions" : {
123
+ "min" : 1 ,
124
+ "max" : 10 ,
125
+ "step" : 1
126
+ }
124
127
}
125
128
```
126
129
@@ -137,7 +140,9 @@ weight: 1
137
140
"title" : " Weight" ,
138
141
"name" : " weight" ,
139
142
"type" : " number" ,
140
- "isDecimal" : true
143
+ "numberOptions" : {
144
+ "isDecimal" : true
145
+ }
141
146
}
142
147
```
143
148
You can’t perform that action at this time.
0 commit comments