File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
src/vs/workbench/contrib/chat/browser/actions Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -21,13 +21,13 @@ import { NOTEBOOK_IS_ACTIVE_EDITOR } from 'vs/workbench/contrib/notebook/common/
21
21
import { IEditorService } from 'vs/workbench/services/editor/common/editorService' ;
22
22
23
23
export function registerChatTitleActions ( ) {
24
- registerAction2 ( class VoteUpAction extends Action2 {
24
+ registerAction2 ( class MarkHelpfulAction extends Action2 {
25
25
constructor ( ) {
26
26
super ( {
27
- id : 'workbench.action.chat.voteUp ' ,
27
+ id : 'workbench.action.chat.markHelpful ' ,
28
28
title : {
29
- value : localize ( 'interactive.voteUp .label' , "Vote Up " ) ,
30
- original : 'Vote Up '
29
+ value : localize ( 'interactive.helpful .label' , "Helpful " ) ,
30
+ original : 'Helpful '
31
31
} ,
32
32
f1 : false ,
33
33
category : CHAT_CATEGORY ,
@@ -61,13 +61,13 @@ export function registerChatTitleActions() {
61
61
}
62
62
} ) ;
63
63
64
- registerAction2 ( class VoteDownAction extends Action2 {
64
+ registerAction2 ( class MarkUnhelpfulAction extends Action2 {
65
65
constructor ( ) {
66
66
super ( {
67
- id : 'workbench.action.chat.voteDown ' ,
67
+ id : 'workbench.action.chat.markUnhelpful ' ,
68
68
title : {
69
- value : localize ( 'interactive.voteDown .label' , "Vote Down " ) ,
70
- original : 'Vote Down '
69
+ value : localize ( 'interactive.unhelpful .label' , "Unhelpful " ) ,
70
+ original : 'Unhelpful '
71
71
} ,
72
72
f1 : false ,
73
73
category : CHAT_CATEGORY ,
You can’t perform that action at this time.
0 commit comments