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
Describe the bug
I create an Inputs.range slider with no "step" specified because I want to be able to enter any floating-point number. I then create an Inputs.bind in a different location in my notebook. However, I am only able to enter integer numbers. The browser will not let my type a decimal point. The only exception is if I completely delete the number and type a number starting with a decimal point.
To Reproduce
Create two javascript cells in an Observable Notebook:
viewof range = Inputs.range([0, 100])
Inputs.bind(Inputs.range([0, 100]), viewof range)