Skip to content

Commit

Permalink
[se] Fix bug 68869
Browse files Browse the repository at this point in the history
  • Loading branch information
GoshaZotov committed Jun 26, 2024
1 parent 59d78a4 commit a941a2f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions cell/model/WorkbookElems.js
Original file line number Diff line number Diff line change
Expand Up @@ -9031,12 +9031,14 @@ function RangeDataManagerElem(bbox, data)
if (handleSelectionRange.c1 === this.Ref.c1 && handleSelectionRange.c2 === this.Ref.c2) {
//all row
//Table1[@]
return this.DisplayName + "[" + AscCommon.cStrucTableReservedWords.at + "]";

//return this.DisplayName + "[" + AscCommon.cStrucTableReservedWords.at + "]";
} else {
//part of row
//Table1[@[Column2]:[Column3]]
//Table1[@Column1]
return this.DisplayName + "[" + AscCommon.cStrucTableReservedWords.at + getColumnNameRange(startCol, endCol) + "]";

//return this.DisplayName + "[" + AscCommon.cStrucTableReservedWords.at + getColumnNameRange(startCol, endCol) + "]";
}
}
}
Expand Down

0 comments on commit a941a2f

Please sign in to comment.