Skip to content

Commit

Permalink
[se] Fix bug 73093
Browse files Browse the repository at this point in the history
  • Loading branch information
GoshaZotov committed Feb 4, 2025
1 parent 915521f commit 8bee23b
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 @@ -23644,7 +23644,7 @@

let sameFile;
let fileName = window["Asc"]["editor"].DocInfo && window["Asc"]["editor"].DocInfo.get_Title();
if (index === fileName || index == "0") {
if ((fileName != null && index === fileName) || index == "0") {
sameFile = true;
}

Expand Down

0 comments on commit 8bee23b

Please sign in to comment.