How would I make a repeater field to allow the user insert a number of assets instead of normal text?
Thanks
Use the options JSON field to specify what types can be added to a repeater:
Here is an example:
{
"fields": [
{
"type": "image",
"label": "Image"
},
{
"type": "text",
"label": "Single line text"
},
{
"type": "asset",
"label": "An Asset",
}
]
}
Most helpful comment
Use the options JSON field to specify what types can be added to a repeater:
Here is an example: