Skip to content

Commit

Permalink
[se] Fix bug 63477
Browse files Browse the repository at this point in the history
  • Loading branch information
konovalovsergey committed Jul 26, 2023
1 parent 89eebd8 commit a14ccaf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cell/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -7152,7 +7152,11 @@ var editor;
this.sendEvent('asc_onError', c_oAscError.ID.PivotLabledColumns, c_oAscError.Level.NoCritical);
}
};
spreadsheet_api.prototype.asc_insertPivotExistingWorksheet = function(dataRef, pivotRef, confirmation) {
spreadsheet_api.prototype.asc_insertPivotExistingWorksheet = function(dataRef, pivotRef) {
if (!Asc.CT_pivotTableDefinition.prototype.isValidDataRef(dataRef)) {
this.sendEvent('asc_onError', c_oAscError.ID.PivotLabledColumns, c_oAscError.Level.NoCritical);
return;
}
var location = AscFormat.ExecuteNoHistory(function() {
return Asc.CT_pivotTableDefinition.prototype.parseDataRef(pivotRef);
}, this, []);
Expand Down

0 comments on commit a14ccaf

Please sign in to comment.