Skip to content

Commit f492402

Browse files
authored
change feedack name to feedback.enabled (microsoft#244677)
change to enabled feedback
1 parent 612147c commit f492402

File tree

6 files changed

+19
-19
lines changed

6 files changed

+19
-19
lines changed

src/vs/platform/telemetry/common/telemetryService.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -227,12 +227,12 @@ configurationRegistry.registerConfiguration({
227227
description: localize('telemetry.telemetryLevel.policyDescription', "Controls the level of telemetry."),
228228
}
229229
},
230-
'telemetry.disableFeedback': {
230+
'telemetry.feedback.enabled': {
231231
type: 'boolean',
232-
default: false,
233-
description: localize('telemetry.disableFeedback', "Disable feedback options."),
232+
default: true,
233+
description: localize('telemetry.feedback.enabled', "Enable feedback mechanisms such as the issue reporter, surveys, and feedback options in features like Copilot Chat."),
234234
policy: {
235-
name: 'DisableFeedback',
235+
name: 'EnableFeedback',
236236
minimumVersion: '1.99',
237237
}
238238
},

src/vs/workbench/contrib/chat/browser/actions/chatTitleActions.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import { ChatViewPane } from '../chatViewPane.js';
4141
import { CHAT_CATEGORY } from './chatActions.js';
4242

4343
export const MarkUnhelpfulActionId = 'workbench.action.chat.markUnhelpful';
44-
const disableFeedbackConfig = 'config.telemetry.disableFeedback';
44+
const enableFeedbackConfig = 'config.telemetry.feedback.enabled';
4545

4646
export function registerChatTitleActions() {
4747
registerAction2(class MarkHelpfulAction extends Action2 {
@@ -57,12 +57,12 @@ export function registerChatTitleActions() {
5757
id: MenuId.ChatMessageFooter,
5858
group: 'navigation',
5959
order: 1,
60-
when: ContextKeyExpr.and(ChatContextKeys.isResponse, ChatContextKeys.responseHasError.negate(), ContextKeyExpr.has(disableFeedbackConfig).negate())
60+
when: ContextKeyExpr.and(ChatContextKeys.isResponse, ChatContextKeys.responseHasError.negate(), ContextKeyExpr.has(enableFeedbackConfig))
6161
}, {
6262
id: MENU_INLINE_CHAT_WIDGET_SECONDARY,
6363
group: 'navigation',
6464
order: 1,
65-
when: ContextKeyExpr.and(ChatContextKeys.isResponse, ChatContextKeys.responseHasError.negate(), ContextKeyExpr.has(disableFeedbackConfig).negate())
65+
when: ContextKeyExpr.and(ChatContextKeys.isResponse, ChatContextKeys.responseHasError.negate(), ContextKeyExpr.has(enableFeedbackConfig))
6666
}]
6767
});
6868
}
@@ -104,12 +104,12 @@ export function registerChatTitleActions() {
104104
id: MenuId.ChatMessageFooter,
105105
group: 'navigation',
106106
order: 2,
107-
when: ContextKeyExpr.and(ChatContextKeys.isResponse, ContextKeyExpr.has(disableFeedbackConfig).negate())
107+
when: ContextKeyExpr.and(ChatContextKeys.isResponse, ContextKeyExpr.has(enableFeedbackConfig))
108108
}, {
109109
id: MENU_INLINE_CHAT_WIDGET_SECONDARY,
110110
group: 'navigation',
111111
order: 2,
112-
when: ContextKeyExpr.and(ChatContextKeys.isResponse, ChatContextKeys.responseHasError.negate(), ContextKeyExpr.has(disableFeedbackConfig).negate())
112+
when: ContextKeyExpr.and(ChatContextKeys.isResponse, ChatContextKeys.responseHasError.negate(), ContextKeyExpr.has(enableFeedbackConfig))
113113
}]
114114
});
115115
}
@@ -156,12 +156,12 @@ export function registerChatTitleActions() {
156156
id: MenuId.ChatMessageFooter,
157157
group: 'navigation',
158158
order: 3,
159-
when: ContextKeyExpr.and(ChatContextKeys.responseSupportsIssueReporting, ChatContextKeys.isResponse, ContextKeyExpr.has(disableFeedbackConfig).negate())
159+
when: ContextKeyExpr.and(ChatContextKeys.responseSupportsIssueReporting, ChatContextKeys.isResponse, ContextKeyExpr.has(enableFeedbackConfig))
160160
}, {
161161
id: MENU_INLINE_CHAT_WIDGET_SECONDARY,
162162
group: 'navigation',
163163
order: 3,
164-
when: ContextKeyExpr.and(ChatContextKeys.responseSupportsIssueReporting, ChatContextKeys.isResponse, ContextKeyExpr.has(disableFeedbackConfig).negate())
164+
when: ContextKeyExpr.and(ChatContextKeys.responseSupportsIssueReporting, ChatContextKeys.isResponse, ContextKeyExpr.has(enableFeedbackConfig))
165165
}]
166166
});
167167
}

src/vs/workbench/contrib/issue/common/issue.contribution.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export class BaseIssueContribution extends Disposable implements IWorkbenchContr
6666
) {
6767
super();
6868

69-
if (configurationService.getValue<boolean>('telemetry.disableFeedback')) {
69+
if (!configurationService.getValue<boolean>('telemetry.feedback.enabled')) {
7070
this._register(CommandsRegistry.registerCommand({
7171
id: 'workbench.action.openIssueReporter',
7272
handler: function (accessor) {

src/vs/workbench/contrib/issue/electron-sandbox/issue.contribution.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class NativeIssueContribution extends BaseIssueContribution {
3535
) {
3636
super(productService, configurationService);
3737

38-
if (configurationService.getValue<boolean>('telemetry.disableFeedback')) {
38+
if (!configurationService.getValue<boolean>('telemetry.feedback.enabled')) {
3939
return;
4040
}
4141

src/vs/workbench/contrib/relauncher/browser/relauncher.contribution.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ interface IConfiguration extends IWindowsConfiguration {
3131
security?: { workspace?: { trust?: { enabled?: boolean } }; restrictUNCAccess?: boolean };
3232
window: IWindowSettings;
3333
workbench?: { enableExperiments?: boolean };
34-
telemetry?: { disableFeedback?: boolean };
34+
telemetry?: { feedback?: { enabled?: boolean } };
3535
_extensionsGallery?: { enablePPE?: boolean };
3636
accessibility?: { verbosity?: { debug?: boolean } };
3737
chat?: { unifiedChatView?: boolean; useFileStorage?: boolean };
@@ -54,7 +54,7 @@ export class SettingsChangeRelauncher extends Disposable implements IWorkbenchCo
5454
'accessibility.verbosity.debug',
5555
ChatConfiguration.UnifiedChatView,
5656
ChatConfiguration.UseFileStorage,
57-
'telemetry.disableFeedback'
57+
'telemetry.feedback.enabled'
5858
];
5959

6060
private readonly titleBarStyle = new ChangeObserver<TitlebarStyle>('string');
@@ -71,7 +71,7 @@ export class SettingsChangeRelauncher extends Disposable implements IWorkbenchCo
7171
private readonly accessibilityVerbosityDebug = new ChangeObserver('boolean');
7272
private readonly unifiedChatView = new ChangeObserver('boolean');
7373
private readonly useFileStorage = new ChangeObserver('boolean');
74-
private readonly telemetryDisableFeedback = new ChangeObserver('boolean');
74+
private readonly telemetryFeedbackEnabled = new ChangeObserver('boolean');
7575

7676
constructor(
7777
@IHostService private readonly hostService: IHostService,
@@ -161,8 +161,8 @@ export class SettingsChangeRelauncher extends Disposable implements IWorkbenchCo
161161
// Profiles
162162
processChanged(this.productService.quality !== 'stable' && this.enablePPEExtensionsGallery.handleChange(config._extensionsGallery?.enablePPE));
163163

164-
// Disable Feedback
165-
processChanged(this.telemetryDisableFeedback.handleChange(config.telemetry?.disableFeedback));
164+
// Enable Feedback
165+
processChanged(this.telemetryFeedbackEnabled.handleChange(config.telemetry?.feedback?.enabled));
166166

167167
if (askToRelaunch && changed && this.hostService.hasFocus) {
168168
this.doConfirm(

src/vs/workbench/contrib/surveys/browser/nps.contribution.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class NPSContribution implements IWorkbenchContribution {
3333
@IProductService productService: IProductService,
3434
@IConfigurationService configurationService: IConfigurationService
3535
) {
36-
if (!productService.npsSurveyUrl || configurationService.getValue<boolean>('telemetry.disableFeedback')) {
36+
if (!productService.npsSurveyUrl || !configurationService.getValue<boolean>('telemetry.feedback.enabled')) {
3737
return;
3838
}
3939

0 commit comments

Comments
 (0)