Skip to content

Commit 44ea7e6

Browse files
authored
remote - use appendMarkdown (microsoft#183101) (microsoft#183126)
1 parent cbbd922 commit 44ea7e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/workbench/contrib/remote/browser/remoteIndicator.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -502,10 +502,10 @@ export class RemoteStatusIndicator extends Disposable implements IWorkbenchContr
502502
}
503503

504504
if (markdownTooltip.value.length > 0) {
505-
markdownTooltip.appendText('\n\n');
505+
markdownTooltip.appendMarkdown('\n\n');
506506
}
507507

508-
markdownTooltip.appendText(line);
508+
markdownTooltip.appendMarkdown(line);
509509

510510
return markdownTooltip;
511511
}

0 commit comments

Comments
 (0)