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
When you fill parameter values from URL, for example localhost:5000/index.html#/my_script?param1=abc¶m2=10, all non-specified parameters are set to null/empty. For checkbox, the default value, in this case, should be false, and in the UI it's shown as false (not checked) indeed.
However, when trying to execute a script, server complains about missing value there.
Steps to reproduce:
Create/find a script (my_script) with 2 parameters, text parameter param1 and boolean parameter param2
Open the script in UI
Change URL to HOST/index.html#/my_script?param1=abc and press enter
Execute the script
Actual result: param1 on UI is equal to "abc", the checkbox is unchecked. However, execution fails with a server error:
Exception: Invalid value, should be bool or string. value=None
The text was updated successfully, but these errors were encountered:
When you fill parameter values from URL, for example
localhost:5000/index.html#/my_script?param1=abc¶m2=10
, all non-specified parameters are set to null/empty. For checkbox, the default value, in this case, should be false, and in the UI it's shown as false (not checked) indeed.However, when trying to execute a script, server complains about missing value there.
Steps to reproduce:
my_script
) with 2 parameters, text parameterparam1
and boolean parameterparam2
HOST/index.html#/my_script?param1=abc
and press enterActual result: param1 on UI is equal to "abc", the checkbox is unchecked. However, execution fails with a server error:
The text was updated successfully, but these errors were encountered: