@bolttech/form-engine-core 0.0.1-beta.30 → 0.0.1-beta.31

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.
Files changed (2) hide show
  1. package/index.esm.js +1 -1
  2. package/package.json +1 -1
package/index.esm.js CHANGED
@@ -2495,7 +2495,7 @@ class FormField {
2495
2495
  this._valid = false;
2496
2496
  this._mounted = true;
2497
2497
  this.initializeObservers();
2498
- this.value = this.initialValue;
2498
+ this.value = this.initialValue || '';
2499
2499
  }
2500
2500
  /**
2501
2501
  * method to initialize all recycled Subjects and initialize Observers on field instance creation or rerender
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bolttech/form-engine-core",
3
- "version": "0.0.1-beta.30",
3
+ "version": "0.0.1-beta.31",
4
4
  "module": "./index.esm.js",
5
5
  "type": "module",
6
6
  "main": "./index.esm.js",