bugfix: input value handles undefined/null
This commit is contained in:
parent
b7b51bd4d5
commit
a11d27f867
|
@ -17,7 +17,7 @@
|
|||
onChange(value)
|
||||
}
|
||||
|
||||
$: displayValue = suffix && value.endsWith(suffix) ? value.replace(new RegExp(`${suffix}$`), "") : value
|
||||
$: displayValue = suffix && value && value.endsWith(suffix) ? value.replace(new RegExp(`${suffix}$`), "") : (value || "")
|
||||
|
||||
</script>
|
||||
|
||||
|
|
Loading…
Reference in New Issue