@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.es.js CHANGED
@@ -5729,7 +5729,10 @@ function serializeCellData(cellData) {
5729
5729
  if (cellData !== null && typeof cellData === 'object') {
5730
5730
  return JSON.stringify(cellData);
5731
5731
  }
5732
- return `${cellData || ''}`;
5732
+ if (cellData === null || cellData === undefined) {
5733
+ return '';
5734
+ }
5735
+ return `${cellData}`;
5733
5736
  }
5734
5737
 
5735
5738
  const FILE_PICKER_FILE_KEY_PREFIX = 'files::';