We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now when I do
{ 'name': 'refreshRate', 'type': 'number', 'default': 30, }
The editor gives a decimal step. I would think that by doing
{ 'name': 'refreshRate', 'type': 'number', 'default': 30, 'editor': 'int' }
or something like this would change the step, but no it doesn't. Although I can do the following
{ 'name': 'refreshRate', 'type': 'int', 'default': 30, }
which will only allow integer values in the UI, but will send string value to the link.
So right now the only viable option I've had was to parse the double on the server and round it to an int.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Right now when I do
The editor gives a decimal step. I would think that by doing
or something like this would change the step, but no it doesn't. Although I can do the following
which will only allow integer values in the UI, but will send string value to the link.
So right now the only viable option I've had was to parse the double on the server and round it to an int.
The text was updated successfully, but these errors were encountered: