rapid-spreadjs 1.0.93 → 1.0.94
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.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.cjs.min.js +1 -1
- package/dist/index.cjs.min.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.esm.min.js +1 -1
- package/dist/index.esm.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -647,7 +647,7 @@ const SheetUtils = {
|
|
|
647
647
|
retCells.push(cell);
|
|
648
648
|
// 如果为无值类型,则设置单元格格式为文本格式
|
|
649
649
|
if (getType == 2 && (value == null || value == undefined || value == '')) {
|
|
650
|
-
sheet.setFormatter(
|
|
650
|
+
sheet.setFormatter(cell.row, cell.col, '@');
|
|
651
651
|
}
|
|
652
652
|
}
|
|
653
653
|
});
|