Parcourir la source

Fixes issue w/ explore repo rev in latest vscode

main
Eric Amodio il y a 5 ans
Parent
révision
d9a3b0e8cd
1 fichiers modifiés avec 4 ajouts et 0 suppressions
  1. +4
    -0
      src/views/viewCommands.ts

+ 4
- 0
src/views/viewCommands.ts Voir le fichier

@ -504,6 +504,10 @@ export class ViewCommands {
private exploreRepoRevision(node: ViewRefNode, options: { openInNewWindow?: boolean } = {}) {
if (!(node instanceof ViewRefNode)) return;
if (options == null) {
options = {};
}
const uri = toGitLensFSUri(node.ref, node.repoPath);
const gitUri = GitUri.fromRevisionUri(uri);

Chargement…
Annuler
Enregistrer