Skip to content

Commit

Permalink
Merge pull request #297 from rw-access/patch-1
Browse files Browse the repository at this point in the history
Fix dropped tags in Diagnostic -> IMarkerData
  • Loading branch information
CGNonofr committed Nov 3, 2021
2 parents a84a9a8 + 1f649e4 commit a4becfe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/src/monaco-converter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,8 @@ export class ProtocolToMonacoConverter {
startColumn: diagnostic.range.start.character + 1,
endLineNumber: diagnostic.range.end.line + 1,
endColumn: diagnostic.range.end.character + 1,
relatedInformation: this.asRelatedInformations(diagnostic.relatedInformation)
relatedInformation: this.asRelatedInformations(diagnostic.relatedInformation),
tags: diagnostic.tags
}
}

Expand Down

0 comments on commit a4becfe

Please sign in to comment.