Allowing auto values for inputs

This commit is contained in:
Conor_Mack 2020-06-02 15:00:31 +01:00
parent e0ca7976f4
commit bb512a9bb2
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
function handleChange(val) {
value = val
let _value = value + suffix
let _value = value !== "auto" ? value + suffix : value
onChange(_value)
}