From a941a2fc83ede47a55b119f82f26be5d6cd8ddda Mon Sep 17 00:00:00 2001 From: Igor Zotov Date: Wed, 26 Jun 2024 22:37:44 +0300 Subject: [PATCH] [se] Fix bug 68869 --- cell/model/WorkbookElems.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cell/model/WorkbookElems.js b/cell/model/WorkbookElems.js index 1cfd6e5bfe..61a68591e5 100644 --- a/cell/model/WorkbookElems.js +++ b/cell/model/WorkbookElems.js @@ -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) + "]"; } } }