@innovastudio/contentbuilder 1.4.101 → 1.4.102
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/package.json
CHANGED
|
@@ -80900,7 +80900,7 @@ class ContentBuilder {
|
|
|
80900
80900
|
Array.prototype.forEach.call(forms, formUpload => {
|
|
80901
80901
|
if (this.dom.hasClass(formUpload, 'please-wait')) {
|
|
80902
80902
|
this.dom.removeClass(formUpload, 'please-wait');
|
|
80903
|
-
formUpload.parentNode.parentNode.querySelector('input[type="text"]').value = s;
|
|
80903
|
+
if (s) formUpload.parentNode.parentNode.querySelector('input[type="text"]').value = s;
|
|
80904
80904
|
formUpload.parentNode.parentNode.querySelector('input[type="file"]').value = '';
|
|
80905
80905
|
}
|
|
80906
80906
|
});
|