Skip to content

Commit

Permalink
Fixed eclipse-theia#9145 in problem copy action
Browse files Browse the repository at this point in the history
Previously uri was returned instead of owner

Contributed on the behalf of STMicroelectronics
Signed-off-by: Niklas DAHLQUIST <[email protected]>
  • Loading branch information
Niklas-Dahlquist authored and vince-fugnitto committed Mar 11, 2021
1 parent e9c8a6d commit 3426e8d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export class ProblemContribution extends AbstractViewContribution<ProblemWidget>
const marker = selection.marker as ProblemMarker;
const serializedProblem = JSON.stringify({
resource: marker.uri,
owner: marker.uri,
owner: marker.owner,
code: marker.data.code,
severity: marker.data.severity,
message: marker.data.message,
Expand Down

0 comments on commit 3426e8d

Please sign in to comment.