mirror of
https://github.com/ONLYOFFICE/sdkjs.git
synced 2026-04-07 14:09:12 +08:00
[se] Fix
This commit is contained in:
@ -16373,10 +16373,7 @@ function RangeDataManagerElem(bbox, data)
|
||||
}
|
||||
|
||||
let cellType = cell.getType();
|
||||
let newVal = noData ? "#REF!" : cell.getValue();
|
||||
if (cellType === CellValueType.Number) {
|
||||
newVal = cell.getNumberValue();
|
||||
}
|
||||
let newVal = noData ? "#REF!" : (cellType === CellValueType.Number ? cell.getNumberValue() : cell.getValue());
|
||||
if (this.CellValue !== newVal) {
|
||||
isChanged = true;
|
||||
this.CellValue = newVal;
|
||||
|
||||
Reference in New Issue
Block a user