Преглед изворни кода

Fixes issue w/ explore repo rev in latest vscode

main
Eric Amodio пре 5 година
родитељ
комит
d9a3b0e8cd
1 измењених фајлова са 4 додато и 0 уклоњено
  1. +4
    -0
      src/views/viewCommands.ts

+ 4
- 0
src/views/viewCommands.ts Прегледај датотеку

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

Loading…
Откажи
Сачувај