Skip to content

Commit 5e414f3

Browse files
fixed minor formatting issues
1 parent 573c02e commit 5e414f3

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

packages/vscode-extension/messages.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
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.",

packages/vscode-extension/src/service/MessageService.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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) {

packages/vscode-extension/src/service/TranslationKeys.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const ANSWERS = {
2222
export const BUTTONS = {
2323
RESTART_NOW: 'BUTTONS_RESTART_NOW',
2424
SEE_DETAILS: 'BUTTONS_SEE_DETAILS',
25-
DISMISS: 'BUTTON_DISMISS'
25+
DISMISS: 'BUTTONS_DISMISS'
2626
};
2727

2828
export const COMMAND = {

0 commit comments

Comments
 (0)