@timlassiter11/yatl 1.2.4 → 1.2.5

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.js CHANGED
@@ -1024,7 +1024,7 @@ var YatlTableController = class extends TypedEventTarget {
1024
1024
  if (isDisplayColumn(column) && typeof column.valueFormatter === "function") {
1025
1025
  value = column.valueFormatter(value, row);
1026
1026
  }
1027
- value = String(value).replace('"', '""');
1027
+ value = String(value ?? "").replace('"', '""');
1028
1028
  list.push(`"${value}"`);
1029
1029
  }
1030
1030
  }