Skip to content

Commit b69c658

Browse files
authored
fix(codewhisperer): disabled setting looks enabled in workspace scope #3683
Problem: Uncheck the "Code Whisperer: Share Code Whisperer Content With AWS" setting at the user level, but when showing settings at workspace level it's checked, even though nothing specific is actually in the workspace settings file. #3477 Solution: Define the setting as "application" scope.
1 parent bca0a49 commit b69c658

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type": "Bug Fix",
3+
"description": "User setting for \"Share CodeWhisperer Content With AWS\" was not reflected in workspace-level settings"
4+
}

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,8 @@
251251
"aws.codeWhisperer.shareCodeWhispererContentWithAWS": {
252252
"type": "boolean",
253253
"markdownDescription": "%AWS.configuration.description.codewhisperer.shareCodeWhispererContentWithAWS%",
254-
"default": true
254+
"default": true,
255+
"scope": "application"
255256
},
256257
"aws.codeWhisperer.javaCompilationOutput": {
257258
"type": "string",

0 commit comments

Comments
 (0)