mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-13 17:24:27 +01:00
Fix missing api proposal check (#325094)
* Fix missing api proposal check * Missing proposal
This commit is contained in:
@@ -18,6 +18,7 @@
|
||||
"defaultChatParticipant",
|
||||
"diffCommand",
|
||||
"documentFiltersExclusive",
|
||||
"documentSyntaxHighlighting",
|
||||
"editorInsets",
|
||||
"embeddings",
|
||||
"envIsConnectionMetered",
|
||||
|
||||
@@ -324,7 +324,7 @@ export function isProposedApiEnabled(extension: IExtensionDescription, proposal:
|
||||
if (!extension.enabledApiProposals) {
|
||||
return false;
|
||||
}
|
||||
return true;// extension.enabledApiProposals.includes(proposal);
|
||||
return extension.enabledApiProposals.includes(proposal);
|
||||
}
|
||||
|
||||
export function checkProposedApiEnabled(extension: IExtensionDescription, proposal: ApiProposalName): void {
|
||||
|
||||
Reference in New Issue
Block a user