From ac564d8916fd0c95aa16ed28c6dffc25a6d72022 Mon Sep 17 00:00:00 2001 From: Mario Jorge Pereira <554178+mariojp@users.noreply.github.com> Date: Fri, 27 Jun 2025 17:03:57 -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(); } } },