Skip to content

Input type range value bug #335

Closed
@TatriX

Description

@TatriX
input![
            attrs![
                At::Value => "400",
                At::Type => "range",
                At::Min => "100",
                At::Max => "800",
                At::Step => "50",
            ]
        ]

Rendered:
image

while it should look like this:
image

To get a proper behavior value need to be placed after step:

input![
            attrs![
                At::Type => "range",
                At::Min => "100",
                At::Max => "800",
                At::Step => "50",
                At::Value => "400",
            ]
        ] 

while it should work independent of attributes order.

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions