fix(file-uploader-button): clear value by setting to "" instead of null (#1812)

This commit is contained in:
Julián Perelli 2023-09-30 17:41:14 +02:00 committed by GitHub
commit 108eb5286c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -62,7 +62,7 @@
$: if (ref && files.length === 0) {
labelText = initialLabelText;
ref.value = null;
ref.value = "";
}
</script>