Skip to content

Commit

Permalink
fix: Fixes single click diff on incoming change tree (#643)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnstonCode committed Jul 15, 2019
1 parent 74ea784 commit da854b9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/treeView/nodes/incomingChangeNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ export default class IncomingChangeNode implements BaseNode {
return {
command: "svn.openChangeHead",
title: "Open Changes with HEAD",
arguments: [this.uri]
arguments: [
new Resource(this.uri, this.type, undefined, "none", true)
]
};
case "deleted":
return {
Expand Down

0 comments on commit da854b9

Please sign in to comment.