We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94fdadb commit cd4d04aCopy full SHA for cd4d04a
1 file changed
src/vs/workbench/services/hover/browser/hoverWidget.ts
@@ -79,7 +79,7 @@ export class HoverWidget extends Widget {
79
80
const rowElement = $('div.hover-row.markdown-hover');
81
const contentsElement = $('div.hover-contents');
82
- const markdown = typeof options.text === 'string' ? new MarkdownString(options.text) : options.text;
+ const markdown = typeof options.text === 'string' ? new MarkdownString().appendText(options.text) : options.text;
83
const markdownElement = renderMarkdown(markdown, {
84
actionHandler: {
85
callback: (content) => this._linkHandler(content),
0 commit comments