Skip to content

Commit

Permalink
Fixes gitkraken#4 The Markdown script should be rendered on the VSCod…
Browse files Browse the repository at this point in the history
…e side
  • Loading branch information
MayurRJoshi committed Oct 5, 2018
1 parent a8e5c8c commit eb66574
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/annotations/annotations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ export class Annotations {
try {
message += this.commentStartRender(level);

message += `[\`${ele.Message}\`](${AddLineCommentCommand.getMarkdownCommandArgs({
message += `[${ele.Message}](${AddLineCommentCommand.getMarkdownCommandArgs({
line: ele.Line,
fileName: ele.Path,
id: ele.Id,
Expand Down Expand Up @@ -221,7 +221,7 @@ export class Annotations {
): MarkdownString | undefined {
let message = '';

message += `[\`# Show File Comments\`](${AddLineCommentCommand.getMarkdownCommandArgs({
message += `[**Show File Comments**](${AddLineCommentCommand.getMarkdownCommandArgs({
fileName: commit.fileName,
commit: commit,
isFileComment: true
Expand Down

0 comments on commit eb66574

Please sign in to comment.