@@ -41,7 +41,7 @@ import { ChatViewPane } from '../chatViewPane.js';
41
41
import { CHAT_CATEGORY } from './chatActions.js' ;
42
42
43
43
export const MarkUnhelpfulActionId = 'workbench.action.chat.markUnhelpful' ;
44
- const disableFeedbackConfig = 'config.telemetry.disableFeedback ' ;
44
+ const enableFeedbackConfig = 'config.telemetry.feedback.enabled ' ;
45
45
46
46
export function registerChatTitleActions ( ) {
47
47
registerAction2 ( class MarkHelpfulAction extends Action2 {
@@ -57,12 +57,12 @@ export function registerChatTitleActions() {
57
57
id : MenuId . ChatMessageFooter ,
58
58
group : 'navigation' ,
59
59
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 ) )
61
61
} , {
62
62
id : MENU_INLINE_CHAT_WIDGET_SECONDARY ,
63
63
group : 'navigation' ,
64
64
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 ) )
66
66
} ]
67
67
} ) ;
68
68
}
@@ -104,12 +104,12 @@ export function registerChatTitleActions() {
104
104
id : MenuId . ChatMessageFooter ,
105
105
group : 'navigation' ,
106
106
order : 2 ,
107
- when : ContextKeyExpr . and ( ChatContextKeys . isResponse , ContextKeyExpr . has ( disableFeedbackConfig ) . negate ( ) )
107
+ when : ContextKeyExpr . and ( ChatContextKeys . isResponse , ContextKeyExpr . has ( enableFeedbackConfig ) )
108
108
} , {
109
109
id : MENU_INLINE_CHAT_WIDGET_SECONDARY ,
110
110
group : 'navigation' ,
111
111
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 ) )
113
113
} ]
114
114
} ) ;
115
115
}
@@ -156,12 +156,12 @@ export function registerChatTitleActions() {
156
156
id : MenuId . ChatMessageFooter ,
157
157
group : 'navigation' ,
158
158
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 ) )
160
160
} , {
161
161
id : MENU_INLINE_CHAT_WIDGET_SECONDARY ,
162
162
group : 'navigation' ,
163
163
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 ) )
165
165
} ]
166
166
} ) ;
167
167
}
0 commit comments