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 StringMatch operator has two arguments, the first one is a JSON map:
It is easy to input a JSON map with one key:
{"data":true}
But when trying to add another key, like
{"data":true,"from":true}
It is not possible to write the comma after the first "true", because sheikah auto formats the JSON and removes the comma. The only way to enter the desired JSON is to use an external editor, and copy-paste the value.
So Sheikah should not remove that comma and let the user write freely.
The text was updated successfully, but these errors were encountered:
Actually, for the sake of UX, matches should use a value => bool input component on the UI and form the JSON map from those. Value input should use an HTML input of the appropriate to the data type (which we know), and bools should be introduced through an HTML select box.
The StringMatch operator has two arguments, the first one is a JSON map:
It is easy to input a JSON map with one key:
But when trying to add another key, like
It is not possible to write the comma after the first "true", because sheikah auto formats the JSON and removes the comma. The only way to enter the desired JSON is to use an external editor, and copy-paste the value.
So Sheikah should not remove that comma and let the user write freely.
The text was updated successfully, but these errors were encountered: