fix bug 78521

This commit is contained in:
Sergey Luzyanin
2025-11-18 17:52:30 +03:00
parent 5b683b1909
commit 48d3fb076a
2 changed files with 3 additions and 2 deletions

View File

@ -7527,7 +7527,7 @@
return "arrow";
};
EndArrow.prototype.isPresent = function () {
return AscFormat.isRealNumber(this.type) && this.type !== LineEndType.None;
return AscFormat.isRealNumber(this.type) && this.type !== LineEndType.None && this.type !== LineEndType.vsdxNone;
};