Setting Input number min value to 10 makes it unusable

If one has the following input:

dcc.Input(
    value="",
    type="number",
    min=10,
),

It becomes completely unusable since the first number you type in is always rejected.

I cannot imagine a single scenario where this is correct.
Am I doing something really obviously wrong.

I want to stop people running the input with a value less than 10 but obviously they need the ability to actually type numbers in.

Many Thanks
Oliver

1 Like

Ah yep, another variant of https://github.com/plotly/dash-core-components/issues/513 / https://github.com/plotly/dash-core-components/issues/455 - whatever we do to solve those two will address this too.

Now that dash 1.0 is out it’s time for us to tackle some of these dcc issues :sweat_smile:

1 Like