Skip to content

Commit 4845f4f

Browse files
author
Andrew Hall
authored
Merge pull request #5883 from dotnet/issues/unsupported_doc_features
Remove unsupported feature
2 parents 1c11b4e + da5e66a commit 4845f4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/razor/src/completion/razorCompletionItemProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export class RazorCompletionItemProvider extends RazorLanguageFeatureBase implem
9090
if (doc && doc.value) {
9191
// Without this, the documentation doesn't get rendered in the editor.
9292
const newDoc = new vscode.MarkdownString(doc.value);
93-
newDoc.isTrusted = doc.isTrusted;
93+
newDoc.isTrusted = false;
9494
completionItem.documentation = newDoc;
9595
}
9696

0 commit comments

Comments
 (0)