Kaynağa Gözat

Fixes floating promises

main
Eric Amodio 6 yıl önce
ebeveyn
işleme
85bcbf2be7
2 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  1. +1
    -1
      src/commands/diffBranchWithBranch.ts
  2. +1
    -1
      src/quickpicks/commonQuickPicks.ts

+ 1
- 1
src/commands/diffBranchWithBranch.ts Dosyayı Görüntüle

@ -79,7 +79,7 @@ export class DiffBranchWithBranchCommand extends ActiveEditorCommand {
if (args.ref1 === undefined) return undefined;
}
Container.resultsExplorer.showComparisonInResults(repoPath, args.ref1, args.ref2);
await Container.resultsExplorer.showComparisonInResults(repoPath, args.ref1, args.ref2);
return undefined;
}

+ 1
- 1
src/quickpicks/commonQuickPicks.ts Dosyayı Görüntüle

@ -247,7 +247,7 @@ export class ShowCommitInResultsQuickPickItem extends CommandQuickPickItem {
async execute(
options: TextDocumentShowOptions = { preserveFocus: false, preview: false }
): Promise<{} | undefined> {
Container.resultsExplorer.showCommitInResults(this.commit);
await Container.resultsExplorer.showCommitInResults(this.commit);
return undefined;
}
}

Yükleniyor…
İptal
Kaydet