Skip to content

"min" property #5

Description

@mvladic

If the min property is set to 0 then it is not taken into account.

I believe following condition is invalid:

if (props.min) newValue = Math.max(newValue, +props.min);

It should be:

if (props.min != undefined) newValue = Math.max(newValue, +props.min);

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions