mirror of https://github.com/rancher/ui.git
Merge pull request #3688 from westlywright/bug.froze.node.port
remove min num check from input integer
This commit is contained in:
commit
382f72d648
|
|
@ -37,7 +37,7 @@ export default TextField.extend({
|
|||
val = `${ max }`;
|
||||
}
|
||||
|
||||
if ( !isNaN(min) && (isNaN(num) || num < min ) ) {
|
||||
if ( !isNaN(min) && isNaN(num) ) {
|
||||
val = `${ min }`;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue