What's wrong with this range setting? š¢
```liquid
{% schema %}
{
"settings": [
{
"type": "range",
"id": "padding",
"label": "Padding",
"default": 20
}
]
}
{% endschema %}
```
### Quick Explanation šÆ
Range settings must include min and max values:
```liquid
"type": "range"
"min": 0, ā
(required)
"max": 100, ā
(required)
"default": 20 ā
(number is correct format)
```
š” Tip: Range inputs always require min and max values. The default value is already correct as a number!
```
Answer Options:
- Default needs to be a string with px
- Missing required min and max values
- Name is missing
- We need blocks defined, evenn if empty