Git - add separator to the checkout quick pick (#172762)

This commit is contained in:
Ladislau Szomoru
2023-01-30 10:55:15 +01:00
committed by GitHub
parent 1c2d4e6c6c
commit 3ec25a9fbb

View File

@@ -2061,7 +2061,7 @@ export class CommandCenter {
const picks: QuickPickItem[] = [];
if (!opts?.detached) {
picks.push(createBranch, createBranchFrom, checkoutDetached);
picks.push(createBranch, createBranchFrom, checkoutDetached, { label: '', kind: QuickPickItemKind.Separator });
}
const quickpick = window.createQuickPick();