File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
packages/vscode-extension Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1212
1313 "BUTTONS_RESTART_NOW" : " Restart Now" ,
1414 "BUTTONS_SEE_DETAILS" : " See Details" ,
15- "BUTTON_DISMISS " : " Dismiss" ,
15+ "BUTTONS_DISMISS " : " Dismiss" ,
1616
1717 "COMMAND_ERROR" : " Something went wrong with '{0}'." ,
1818 "COMMAND_SUCCESS" : " '{0}' has been successfully executed." ,
Original file line number Diff line number Diff line change @@ -55,8 +55,7 @@ export default class MessageService {
5555 showWarningMessageDismiss ( warningMessage : string , includeProjectName = true ) {
5656 window . showWarningMessage (
5757 includeProjectName ? this . addProjectNameToMessage ( warningMessage ) : warningMessage ,
58- this . translationService . getMessage ( BUTTONS . DISMISS ) ,
59- ) ;
58+ this . translationService . getMessage ( BUTTONS . DISMISS ) ) ;
6059 }
6160
6261 showErrorMessage ( errorMessage : string ) {
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export const ANSWERS = {
2222export const BUTTONS = {
2323 RESTART_NOW : 'BUTTONS_RESTART_NOW' ,
2424 SEE_DETAILS : 'BUTTONS_SEE_DETAILS' ,
25- DISMISS : 'BUTTON_DISMISS '
25+ DISMISS : 'BUTTONS_DISMISS '
2626} ;
2727
2828export const COMMAND = {
You can’t perform that action at this time.
0 commit comments