diff --git a/dev-dashboard/frontend/src/App.svelte b/dev-dashboard/frontend/src/App.svelte index 3aa4a57957..15bf605f79 100644 --- a/dev-dashboard/frontend/src/App.svelte +++ b/dev-dashboard/frontend/src/App.svelte @@ -144,6 +144,9 @@ } else if (e.key === "k" || e.key === "K") { e.preventDefault(); if (!creating) showCreateDialog = true; + } else if (e.key === "m" || e.key === "M") { + e.preventDefault(); + if (selectedBranch && !isMain) mergeBranch = selectedBranch; } else if (e.key === "d" || e.key === "D") { e.preventDefault(); if (selectedBranch && !isMain) removeBranch = selectedBranch; @@ -176,6 +179,7 @@