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
Describe the bug
When building a select setting in a section/block schema, the group key is surfaced in intellisense at the root setting level, instead of the option level, where it is valid.
Just to make sure, I tried adding group to the root of the setting and got an error from the CLI.
Source
{% schema %}
{
"name": "Section",
"settings": [
{
"type": "select""id": "select",
"label": "Select",
""// group is suggested here"options": [
{
"label": "Option",
"value": "option",
""// group is not suggested here
}
]
}
]
}
{% endschema %}
Expected behaviour group key is not suggested when I try to add a property at the same level as "label": "Select", and is suggested when I try to add a property at the same level as "value": "option".
Actual behaviour
Debugging information
OS: Mac
OS Version: Sequoia 15.2
Extension Version: 3.5.1
The text was updated successfully, but these errors were encountered:
Describe the bug
When building a
select
setting in a section/block schema, thegroup
key is surfaced in intellisense at the root setting level, instead of the option level, where it is valid.Just to make sure, I tried adding
group
to the root of the setting and got an error from the CLI.Source
Expected behaviour
group
key is not suggested when I try to add a property at the same level as"label": "Select"
, and is suggested when I try to add a property at the same level as"value": "option"
.Actual behaviour
Debugging information
The text was updated successfully, but these errors were encountered: