@bpmn-io/form-js-viewer 1.15.2 → 1.15.3
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/index.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +4 -1
- package/dist/index.es.js.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -5749,7 +5749,10 @@ function serializeCellData(cellData) {
|
|
|
5749
5749
|
if (cellData !== null && typeof cellData === 'object') {
|
|
5750
5750
|
return JSON.stringify(cellData);
|
|
5751
5751
|
}
|
|
5752
|
-
|
|
5752
|
+
if (cellData === null || cellData === undefined) {
|
|
5753
|
+
return '';
|
|
5754
|
+
}
|
|
5755
|
+
return `${cellData}`;
|
|
5753
5756
|
}
|
|
5754
5757
|
|
|
5755
5758
|
const FILE_PICKER_FILE_KEY_PREFIX = 'files::';
|