You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The defaultValue of an INTERVAL Style settings must be a integer but the script accept only string and string doesn't works for this type of settings.
Options key doesn't work too.
Error : Invalid config:
["The value at: .style[1].elements[3].type is invalid. should be equal to one of the allowed values.",
"The value at: .style[1].elements[3].defaultValue is invalid. should be string.",
"The value at: .style[1].elements[3].defaultValue is invalid. should be object.",
"The value at: .style[1].elements[3] is invalid. should have required property 'options'.",
"The value at: .style[1].elements[3] is invalid. should match some schema in anyOf."]
If I use (type: "strings") the build process works, yet Data Studio (browser) throws errors.
If I user (type: "numbers") I cant even finish the build process.
I just don't get why whoever changed the type from strings to numbers didn't fix everything else that is connected to it.
Would be great if someone added a "fix" to that as I have to work with textfields now, which is kind of a dirty workaround in my eyes...
The defaultValue of an INTERVAL Style settings must be a integer but the script accept only string and string doesn't works for this type of settings.
Options key doesn't work too.
Error : Invalid config:
["The value at: .style[1].elements[3].type is invalid. should be equal to one of the allowed values.",
"The value at: .style[1].elements[3].defaultValue is invalid. should be string.",
"The value at: .style[1].elements[3].defaultValue is invalid. should be object.",
"The value at: .style[1].elements[3] is invalid. should have required property 'options'.",
"The value at: .style[1].elements[3] is invalid. should match some schema in anyOf."]
Values :
{
"id": "myId",
"label": "My Label",
"type": "INTERVAL",
"defaultValue": 0
}
{
"id": "myId",
"label": "My Label",
"type": "INTERVAL",
"options": [
{
"max": "100",
"min": "0"
},
]
}
{
"id": "myId",
"label": "My Label",
"type": "INTERVAL",
"defaultValue": 0
"options": [
{
"max": "100",
"min": "0"
},
]
}
{
"id": "myId",
"label": "My Label",
"type": "INTERVAL",
"defaultValue": 0
"options": [
{
"max": 100,
"min": 0
},
]
}
The text was updated successfully, but these errors were encountered: