Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

[Number Input] Invalid use of min/max #565

Open
@Heziode

Description

@Heziode

if (event.key === 'Home') {
event.preventDefault()
if (isDef(this.min)) {
this.updateValue(this.max)
}
}
if (event.key === 'End') {
event.preventDefault()
if (isDef(this.max)) {
this.updateValue(this.min)
}
}

The following code:

   if (isDef(this.min)) { 
     this.updateValue(this.max) 
   }

Should be:

   if (isDef(this.min)) { 
     this.updateValue(this.min) 
   }

And vice-versa right? Or there's something I didn't understand in the logic of the component?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions