Skip to content

Commit e075315

Browse files
committed
fixed: incorrect fill handle ref
1 parent 927a0b7 commit e075315

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/core/src/modules/dropCell.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2573,7 +2573,7 @@ export function updateDropCell(ctx: Context) {
25732573
)}`;
25742574
const v = formula.execfunction(ctx, f, i, j);
25752575

2576-
formula.execFunctionGroup(ctx, j, i, v[1], undefined, d);
2576+
formula.execFunctionGroup(ctx, i, j, v[1], undefined, d);
25772577

25782578
[, cell.v, cell.f] = v;
25792579

@@ -2672,7 +2672,7 @@ export function updateDropCell(ctx: Context) {
26722672
)}`;
26732673
const v = formula.execfunction(ctx, f, i, j);
26742674

2675-
formula.execFunctionGroup(ctx, j, i, v[1], undefined, d);
2675+
formula.execFunctionGroup(ctx, i, j, v[1], undefined, d);
26762676

26772677
[, cell.v, cell.f] = v;
26782678

0 commit comments

Comments
 (0)