mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
fix(file-uploader-button): clear value by setting to ""
instead of null
(#1812)
This commit is contained in:
parent
aae2dd42aa
commit
108eb5286c
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@
|
|||
|
||||
$: if (ref && files.length === 0) {
|
||||
labelText = initialLabelText;
|
||||
ref.value = null;
|
||||
ref.value = "";
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue