Sfoglia il codice sorgente

Fixes issue w/ explore repo rev in latest vscode

main
Eric Amodio 5 anni fa
parent
commit
d9a3b0e8cd
1 ha cambiato i file con 4 aggiunte e 0 eliminazioni
  1. +4
    -0
      src/views/viewCommands.ts

+ 4
- 0
src/views/viewCommands.ts Vedi File

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

Caricamento…
Annulla
Salva