@builttocreate/engine-utils 2.7.0-beta.3 → 2.7.0-beta.4
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/joyDocHelper.js +2 -2
- package/package.json +1 -1
package/dist/joyDocHelper.js
CHANGED
|
@@ -465,7 +465,7 @@ var duplicateDocumentPage = function duplicateDocumentPage(doc, fileId, pageId)
|
|
|
465
465
|
_id: (0, _generateObjectId["default"])()
|
|
466
466
|
});
|
|
467
467
|
/**
|
|
468
|
-
* Logic to make the table field blank if
|
|
468
|
+
* Logic to make the table field blank if blockImport is true for the column
|
|
469
469
|
*/
|
|
470
470
|
|
|
471
471
|
|
|
@@ -482,7 +482,7 @@ var duplicateDocumentPage = function duplicateDocumentPage(doc, fileId, pageId)
|
|
|
482
482
|
});
|
|
483
483
|
});
|
|
484
484
|
duplicateField.value = nextFieldValue;
|
|
485
|
-
} else if (duplicateField.blockImport) {
|
|
485
|
+
} else if (duplicateField.blockImport && duplicateField.type !== _FieldTypes["default"].chart) {
|
|
486
486
|
duplicateField.value = '';
|
|
487
487
|
}
|
|
488
488
|
|