Quellcode durchsuchen

Changes placeholder for consistency with other quick picks

main
Eric Amodio vor 7 Jahren
Ursprung
Commit
dcbf70682e
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      src/commands/showQuickBranchHistory.ts

+ 1
- 1
src/commands/showQuickBranchHistory.ts Datei anzeigen

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

Laden…
Abbrechen
Speichern