Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitryOrlov committed Feb 6, 2025
1 parent 2199143 commit f0221a8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion cell/view/WorksheetView.js
Original file line number Diff line number Diff line change
Expand Up @@ -2241,7 +2241,7 @@
c = hasNumber.arrCols[i];
cell = t._getVisibleCell(c, arCopy.r2);
if (cell.hasMerged()) {
continue
continue;
}
text = (new asc_Range(c, arCopy.r1, c, arCopy.r2 - 1)).getName();
val = t.generateAutoCompleteFormula(functionName, text);
Expand Down
1 change: 0 additions & 1 deletion tests/cell/spreadsheet-calculation/SheetStructureTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -3896,7 +3896,6 @@ $(function () {
supposedActiveCell = ws.getCell2("B22");
assert.strictEqual(activeCell.col === supposedActiveCell.bbox.c1 && activeCell.row === supposedActiveCell.bbox.r1, true, "Active cell test. B20:B22(only text in range) autosum");

debugger
/* autocomplete to merge cells */
ws.getRange2("A30:B31").setValue("111");
// C30:D31 merge & center
Expand Down

0 comments on commit f0221a8

Please sign in to comment.