Skip to content

Commit

Permalink
Comments panel: css issue causing the position of "Ln" to be shifted (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
alexr00 committed Jul 20, 2022
1 parent 1c1c0d5 commit 09259ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ export class CommentNodeRenderer implements IListRenderer<ITreeNode<CommentNode>
templateData.disposables.push(disposables);
const renderedComment = this.getRenderedComment(originalComment.comment.body, disposables);
templateData.disposables.push(renderedComment);
templateData.threadMetadata.commentPreview.appendChild(renderedComment.element);
templateData.threadMetadata.commentPreview.appendChild(renderedComment.element.firstElementChild ?? renderedComment.element);
templateData.threadMetadata.commentPreview.title = renderedComment.element.textContent ?? '';
}

Expand Down

0 comments on commit 09259ab

Please sign in to comment.