Did suggested fix to handle possible null return of text.v listed in … #1730

Merged
geoffrymichael merged 1 commits from fix-named-cell-reference-not-handling-undefined into master 2020-07-06 20:42:59 +00:00

View File

@ -78,7 +78,7 @@ var write_content_ods/*:{(wb:any, opts:any):string}*/ = (function() {
ct['office:value'] = (cell.v||0);
break;
case 's': case 'str':
textp = cell.v;
textp = cell.v == null ? "" : cell.v;
ct['office:value-type'] = "string";
break;
case 'd':