Parcourir la source

Fixes floating promises

main
Eric Amodio il y a 6 ans
Parent
révision
85bcbf2be7
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. +1
    -1
      src/commands/diffBranchWithBranch.ts
  2. +1
    -1
      src/quickpicks/commonQuickPicks.ts

+ 1
- 1
src/commands/diffBranchWithBranch.ts Voir le fichier

@ -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 Voir le fichier

@ -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;
}
}

Chargement…
Annuler
Enregistrer