@builttocreate/engine-utils 2.3.2-beta.1.1 → 2.3.2-beta.1.2
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/fieldHelper.js +1 -0
- package/package.json +1 -1
package/dist/fieldHelper.js
CHANGED
|
@@ -297,6 +297,7 @@ exports.getTemplateWithLookups = getTemplateWithLookups;
|
|
|
297
297
|
|
|
298
298
|
var isFieldEmpty = function isFieldEmpty(fieldType, fieldValue, fieldOptions, fieldDisplayType, fieldColumnType) {
|
|
299
299
|
var isEmpty = false;
|
|
300
|
+
if (fieldType === _FieldTypes["default"].block) return;
|
|
300
301
|
|
|
301
302
|
if (fieldType === _FieldTypes["default"].text && (!fieldValue || fieldValue && fieldValue.replace(/\s+/g, '').length == 0)) {
|
|
302
303
|
isEmpty = true;
|