Fixes uris on nodes

This commit is contained in:
Eric Amodio
2017-06-26 03:14:17 -04:00
parent d193676502
commit c96a659e9e
9 changed files with 28 additions and 25 deletions

View File

@@ -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 {