mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-31 17:25:22 -05:00
Fixes uris on nodes
This commit is contained in:
@@ -18,7 +18,7 @@ export class StashNode extends ExplorerNode {
|
||||
const stash = await this.git.getStashList(this.uri.repoPath!);
|
||||
if (stash === undefined) return [];
|
||||
|
||||
return [...Iterables.map(stash.commits.values(), c => new StashCommitNode(c, this.uri, this.context, this.git))];
|
||||
return [...Iterables.map(stash.commits.values(), c => new StashCommitNode(c, this.context, this.git))];
|
||||
}
|
||||
|
||||
getTreeItem(): TreeItem {
|
||||
|
||||
Reference in New Issue
Block a user