Skip to content

Commit

Permalink
[se] Fix bug 72919
Browse files Browse the repository at this point in the history
  • Loading branch information
GoshaZotov authored and K0R0L committed Jan 30, 2025
1 parent ed88e73 commit 5ea4cad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cell/model/Workbook.js
Original file line number Diff line number Diff line change
Expand Up @@ -6951,7 +6951,7 @@
return this.index;
};
Worksheet.prototype.getName=function(){
return this.sName !== undefined && this.sName.length > 0 ? this.sName : "";
return this.sName != null && this.sName.length > 0 ? this.sName : "";
};
Worksheet.prototype.setName=function(name){
if(name.length <= g_nSheetNameMaxLength)
Expand Down

0 comments on commit 5ea4cad

Please sign in to comment.