Skip to content

Commit d912507

Browse files
authored
Fix a formatting issue (#363)
1 parent 80dcef9 commit d912507

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

client/src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export async function activate(context: ExtensionContext) {
108108

109109
languageClient.onNotification("cfn/cfnLintUpgradeNeeded", (params) => {
110110
window.showInformationMessage(
111-
`You are using an outdated version of cfn-lint (${params["cli_version"]}). The latest version is ${params["latest_version"]}.`
111+
`You are using an outdated version of cfn-lint (${params["cliVersion"]}). The latest version is ${params["latestVersion"]}.`
112112
);
113113
});
114114

server/src/server/handlers/notificationHandler.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ export class NotificationHandler {
7373
try {
7474
if (gt(latestVersion, cliVersion)) {
7575
this.connection.sendNotification("cfn/cfnLintUpgradeNeeded", {
76-
cli_version: cliVersion,
77-
latest_version: latestVersion,
76+
cliVersion: cliVersion,
77+
latestVersion: latestVersion,
7878
});
7979
}
8080
} catch (error) {

0 commit comments

Comments
 (0)