Merge pull request #8951 from ryzngard/cp/8913

Cherry Pick #8913
This commit is contained in:
Andrew Hall 2023-07-13 13:58:48 -07:00 коммит произвёл GitHub
Родитель b0fd3e3ac4 3c0b894df0
Коммит 8ab9f87a41
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -48,7 +48,7 @@ export class RazorCompletionItemProvider
if (doc) {
// Without this, the documentation doesn't get rendered in the editor.
const newDoc = new vscode.MarkdownString(doc.value);
newDoc.isTrusted = doc.isTrusted;
newDoc.isTrusted = false;
completionItem.documentation = newDoc;
}