@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 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
- return `${cellData || ''}`;
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::';