Hi!
I have repeater list with text fields list-text
How to fill-in example for repeater in block.json?
I tried these variants:
"example": {
"attributes": {
"data": {
"list": [
[
["list-text", "Element 1"]
],
[
["list-text", "Element 2"]
],
[
["list-text", "Element 3"]
]
]
}
}
}
"example": {
"attributes": {
"data": {
"list": [
{
"list-text": "Element 1"
},
{
"list-text": "Element 2"
},
{
"list-text": "Element 3"
}
]
}
}
}
But it doesn’t work.