Skip to content

Commit 7ce84f7

Browse files
committed
fix key reversal
1 parent 29a1b51 commit 7ce84f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/transforms/stack.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export function stackX(stackOptions = {}, options = {}) {
1414
export function stackX1(stackOptions = {}, options = {}) {
1515
if (arguments.length === 1) [stackOptions, options] = mergeOptions(stackOptions);
1616
const {y1, y = y1, x} = options;
17-
const [transform, Y, X] = stack(y, x, "x", "y", stackOptions, options);
17+
const [transform, Y, X] = stack(y, x, "y", "x", stackOptions, options);
1818
return {...transform, y1, y: Y, x: X};
1919
}
2020

0 commit comments

Comments
 (0)