mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 11:08:51 +01:00
Git - git blame/timeline hover should not support HTML (#244729)
* Git - git blame hover should not support HTML * Also fix timeline hover
This commit is contained in:
@@ -248,7 +248,6 @@ export class GitBlameController {
|
||||
|
||||
const markdownString = new MarkdownString();
|
||||
markdownString.isTrusted = true;
|
||||
markdownString.supportHtml = true;
|
||||
markdownString.supportThemeIcons = true;
|
||||
|
||||
// Author, date
|
||||
|
||||
@@ -57,7 +57,6 @@ export class GitTimelineItem extends TimelineItem {
|
||||
setItemDetails(uri: Uri, hash: string | undefined, avatar: string | undefined, author: string, email: string | undefined, date: string, message: string, shortStat?: CommitShortStat, remoteSourceCommands: Command[] = []): void {
|
||||
this.tooltip = new MarkdownString('', true);
|
||||
this.tooltip.isTrusted = true;
|
||||
this.tooltip.supportHtml = true;
|
||||
|
||||
const avatarMarkdown = avatar
|
||||
? ``
|
||||
|
||||
Reference in New Issue
Block a user