Skip to content

Commit

Permalink
Fix dropped tags in Diagnostic -> IMarkerData
Browse files Browse the repository at this point in the history
  • Loading branch information
rw-access committed Oct 29, 2021
1 parent a84a9a8 commit 88d57e6
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 88d57e6

Please sign in to comment.