@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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@innovastudio/contentbuilder",
3
3
  "type": "module",
4
- "version": "1.4.101",
4
+ "version": "1.4.102",
5
5
  "description": "",
6
6
  "main": "public/contentbuilder/contentbuilder.esm.js",
7
7
  "files": [
@@ -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
  });