Merge pull request #293 from mjashanks/master
bugfix: input value handles undefined/null
This commit is contained in:
commit
710eb380bb
|
@ -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