@fileverse-dev/fortune-core 1.1.99-patch-1 → 1.1.99-patch-4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/modules/cell.js +3 -0
- package/lib/modules/cell.js +3 -0
- package/package.json +1 -1
package/es/modules/cell.js
CHANGED
|
@@ -340,6 +340,9 @@ export function setCellValue(ctx, r, c, d, v) {
|
|
|
340
340
|
}
|
|
341
341
|
}
|
|
342
342
|
d[r][c] = cell;
|
|
343
|
+
if (ctx.luckysheet_selection_range) {
|
|
344
|
+
ctx.luckysheet_selection_range = [];
|
|
345
|
+
}
|
|
343
346
|
}
|
|
344
347
|
export function getRealCellValue(r, c, data, attr) {
|
|
345
348
|
var value = getCellValue(r, c, data, "m");
|
package/lib/modules/cell.js
CHANGED
|
@@ -373,6 +373,9 @@ function setCellValue(ctx, r, c, d, v) {
|
|
|
373
373
|
}
|
|
374
374
|
}
|
|
375
375
|
d[r][c] = cell;
|
|
376
|
+
if (ctx.luckysheet_selection_range) {
|
|
377
|
+
ctx.luckysheet_selection_range = [];
|
|
378
|
+
}
|
|
376
379
|
}
|
|
377
380
|
function getRealCellValue(r, c, data, attr) {
|
|
378
381
|
var value = getCellValue(r, c, data, "m");
|