@wendongfly/zihi 1.1.3 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/files.html +2 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/files.html
CHANGED
|
@@ -576,8 +576,9 @@ function closeUploadSheet() {
|
|
|
576
576
|
|
|
577
577
|
function handleFiles(files) {
|
|
578
578
|
if (!files.length) return;
|
|
579
|
+
const copy = Array.from(files);
|
|
579
580
|
closeUploadSheet();
|
|
580
|
-
uploadFiles(
|
|
581
|
+
uploadFiles(copy);
|
|
581
582
|
}
|
|
582
583
|
|
|
583
584
|
async function uploadFiles(files) {
|
package/dist/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"type":"module","version":"1.1.
|
|
1
|
+
{"type":"module","version":"1.1.3"}
|