We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dc5e88 commit 57b296eCopy full SHA for 57b296e
bits/81_writeods.js
@@ -78,7 +78,7 @@ var write_content_ods/*:{(wb:any, opts:any):string}*/ = (function() {
78
ct['office:value'] = (cell.v||0);
79
break;
80
case 's': case 'str':
81
- textp = cell.v;
+ textp = cell.v == null ? "" : cell.v;
82
ct['office:value-type'] = "string";
83
84
case 'd':
0 commit comments