From 695a4507c4cbf450f0d184db5a1f5577d5259f4e Mon Sep 17 00:00:00 2001 From: Mario Jorge Pereira <554178+mariojp@users.noreply.github.com> Date: Fri, 6 Jun 2025 11:51:15 -0300 Subject: [PATCH] Fix rebase branch config assignment --- js/controlbox.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/controlbox.js b/js/controlbox.js index c3f770d..1557df9 100644 --- a/js/controlbox.js +++ b/js/controlbox.js @@ -865,7 +865,7 @@ function(_yargs, d3, demos) { if (path[0] === 'branch') { if (path[2] === 'rebase') { - this.rebase[path[1]] = args.pop(); + this.rebaseConfig[path[1]] = args.pop(); } } },