Skip to content

Commit

Permalink
remove web extension kind from the setting schema
Browse files Browse the repository at this point in the history
  • Loading branch information
sandy081 committed Sep 1, 2021
1 parent 8a4d10d commit 2f97f57
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/vs/workbench/contrib/remote/common/remote.contribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,11 @@ const extensionKindSchema: IJSONSchema = {
type: 'string',
enum: [
'ui',
'workspace',
'web'
'workspace'
],
enumDescriptions: [
localize('ui', "UI extension kind. In a remote window, such extensions are enabled only when available on the local machine."),
localize('workspace', "Workspace extension kind. In a remote window, such extensions are enabled only when available on the remote."),
localize('web', "Web worker extension kind. Such an extension can execute in a web worker extension host.")
localize('workspace', "Workspace extension kind. In a remote window, such extensions are enabled only when available on the remote.")
],
};

Expand Down

0 comments on commit 2f97f57

Please sign in to comment.