浏览代码

Changes placeholder for consistency with other quick picks

main
Eric Amodio 7 年前
父节点
当前提交
dcbf70682e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/commands/showQuickBranchHistory.ts

+ 1
- 1
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) {

正在加载...
取消
保存