@fileverse-dev/fortune-core 1.2.56-patch-8 → 1.2.56-patch-9
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/dropCell.js
CHANGED
|
@@ -2000,7 +2000,7 @@ export function updateDropCell(ctx) {
|
|
|
2000
2000
|
console.log(j, i);
|
|
2001
2001
|
var afterUpdateCell = ctx.hooks.afterUpdateCell;
|
|
2002
2002
|
if (afterUpdateCell) {
|
|
2003
|
-
afterUpdateCell(
|
|
2003
|
+
afterUpdateCell(i, j, null, __assign(__assign({}, cell), {
|
|
2004
2004
|
v: v[1] instanceof Promise ? v[1] : cell.v,
|
|
2005
2005
|
m: v[1] instanceof Promise ? "[object Promise]" : v[1]
|
|
2006
2006
|
}));
|
package/lib/modules/dropCell.js
CHANGED
|
@@ -2016,7 +2016,7 @@ function updateDropCell(ctx) {
|
|
|
2016
2016
|
console.log(j, i);
|
|
2017
2017
|
var afterUpdateCell = ctx.hooks.afterUpdateCell;
|
|
2018
2018
|
if (afterUpdateCell) {
|
|
2019
|
-
afterUpdateCell(
|
|
2019
|
+
afterUpdateCell(i, j, null, __assign(__assign({}, cell), {
|
|
2020
2020
|
v: v[1] instanceof Promise ? v[1] : cell.v,
|
|
2021
2021
|
m: v[1] instanceof Promise ? "[object Promise]" : v[1]
|
|
2022
2022
|
}));
|