From dcbf70682e46d57a04d45fee95b70d1ac487a210 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Tue, 28 Mar 2017 18:44:25 -0400 Subject: [PATCH] Changes placeholder for consistency with other quick picks --- src/commands/showQuickBranchHistory.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/showQuickBranchHistory.ts b/src/commands/showQuickBranchHistory.ts index 1edeb9c..9dcf9b0 100644 --- a/src/commands/showQuickBranchHistory.ts +++ b/src/commands/showQuickBranchHistory.ts @@ -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) {