Parcourir la source

Changes placeholder for consistency with other quick picks

main
Eric Amodio il y a 7 ans
Parent
révision
dcbf70682e
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/commands/showQuickBranchHistory.ts

+ 1
- 1
src/commands/showQuickBranchHistory.ts Voir le fichier

@ -30,7 +30,7 @@ export class ShowQuickBranchHistoryCommand extends ActiveEditorCachedCommand {
if (!branch) {
const branches = await this.git.getBranches(repoPath);
const pick = await BranchesQuickPick.show(branches, `pick a branch to show history`);
const pick = await BranchesQuickPick.show(branches, `Show history for branch\u2026`);
if (!pick) return undefined;
if (pick instanceof CommandQuickPickItem) {

Chargement…
Annuler
Enregistrer