@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 +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/yatl.min.global.js +1 -1
- package/dist/yatl.min.global.js.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -975,7 +975,7 @@ var YatlTableController = class extends TypedEventTarget {
|
|
|
975
975
|
if (isDisplayColumn(column) && typeof column.valueFormatter === "function") {
|
|
976
976
|
value = column.valueFormatter(value, row);
|
|
977
977
|
}
|
|
978
|
-
value = String(value).replace('"', '""');
|
|
978
|
+
value = String(value ?? "").replace('"', '""');
|
|
979
979
|
list.push(`"${value}"`);
|
|
980
980
|
}
|
|
981
981
|
}
|