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
[[extensions.settings.fields.validations]]
name = "choices"
value = "["red", "green", "blue"]"
is a valid example.
But, the shopify cli will throw out an error:
15:26:16 │ app-access │ Error while deploying updated extension draft: Fix the following error in
extensions/order-status-ui/shopify.extension.toml:
15:26:16 │ app-access │ Unexpected character, expected only whitespace or comments till end of
line at row 65, col 12, pos 2186:
15:26:16 │ app-access │ 64: name = "choices"
15:26:16 │ app-access │ 65> value = "["red", "green", "blue"]"
Replacing the code with:
[[extensions.settings.fields.validations]]
name = "choices"
value = "[\"red\", \"green"\, \"blue\"]"
allows the UI to work:
Steps to reproduce the behavior:
Add the config above to a setting
Observe that the CLI complains
Replace the " with \" and see it works and the UI renders.
Expected behavior
No error and correct documentation.
Screenshots
Additional context
The text was updated successfully, but these errors were encountered:
Describe the bug
The documentation on this page says:
is a valid example.
But, the shopify cli will throw out an error:
Replacing the code with:
allows the UI to work:
Steps to reproduce the behavior:
"
with\"
and see it works and the UI renders.Expected behavior
No error and correct documentation.
Screenshots
Additional context
The text was updated successfully, but these errors were encountered: