rb-document-form-constructor 0.8.32 → 0.8.33

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,6 +1,6 @@
1
1
  {
2
2
  "name": "rb-document-form-constructor",
3
- "version": "0.8.32",
3
+ "version": "0.8.33",
4
4
  "description": "",
5
5
  "main": "dist/rb-document-form-constructor.ssr.js",
6
6
  "browser": "dist/rb-document-form-constructor.esm.js",
@@ -118,7 +118,7 @@ export default {
118
118
  }
119
119
  },
120
120
  isValueEmpty(fieldName) {
121
- if (!(this.doc[fieldName] || this.doc[fieldName]?.length)) {
121
+ if (this.doc[fieldName] == null && !this.doc[fieldName]?.length) {
122
122
  return true;
123
123
  }
124
124