Changes placeholder for consistency with other quick picks

This commit is contained in:
Eric Amodio
2017-03-28 18:44:25 -04:00
parent 2a70e5b4cb
commit dcbf70682e

View File

@@ -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) {