-
Notifications
You must be signed in to change notification settings - Fork 105
Description
Hello,
I have added the label-variant property to a TextInput Control
as it shown in the example below.
In the flow preview I can see the property working correctly, but as soon as I press save, this property will be dropped.
I have tried to upload the same json Flow over the graph.facebook.com/v22.0 but the property it will be deleted on Meta side.
Thank you
BEFORE SAVE
{
....
"version": "7.0",
"data_api_version": "3.0"
...
{
"type": "TextInput",
"required": false,
"init-value": "${data.item_details.qty}",
"label": "Cantitate",
"label-variant": "large",
"pattern": "^[0-9]?$",
"helper-text": "Cantitate maxima 9 ",
"input-type": "text",
"name": "Qty"
},
...
}
AFTER SAVE
{
....
"version": "7.0",
"data_api_version": "3.0"
...
{
"type": "TextInput",
"required": false,
"init-value": "${data.item_details.qty}",
"label": "Cantitate",
"pattern": "^[0-9]?$",
"helper-text": "Cantitate maxima 9 ",
"input-type": "text",
"name": "Qty"
},
...
}