cloudmr-ux 1.8.6 → 1.8.7
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/index.js +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -485,7 +485,9 @@ function CmrUploadWindow({
|
|
|
485
485
|
inputRef.addEventListener("drop", function(e) {
|
|
486
486
|
e.stopPropagation();
|
|
487
487
|
e.preventDefault();
|
|
488
|
-
|
|
488
|
+
setTimeout(() => {
|
|
489
|
+
setUploadBoxWarning(void 0);
|
|
490
|
+
}, 1e4);
|
|
489
491
|
let files = e.dataTransfer.files;
|
|
490
492
|
if (files.length > 1) {
|
|
491
493
|
setInfoOpen(true);
|
package/dist/index.mjs
CHANGED
|
@@ -437,7 +437,9 @@ function CmrUploadWindow({
|
|
|
437
437
|
inputRef.addEventListener("drop", function(e) {
|
|
438
438
|
e.stopPropagation();
|
|
439
439
|
e.preventDefault();
|
|
440
|
-
|
|
440
|
+
setTimeout(() => {
|
|
441
|
+
setUploadBoxWarning(void 0);
|
|
442
|
+
}, 1e4);
|
|
441
443
|
let files = e.dataTransfer.files;
|
|
442
444
|
if (files.length > 1) {
|
|
443
445
|
setInfoOpen(true);
|